我需要在不访问列表的情况下获取 Sharepoint 2007 中 Sharepoint 字段选择列的值

发布于 2024-08-31 16:17:51 字数 298 浏览 9 评论 0原文

我想要执行此操作,但不访问列表“项目”,也就是说,可能使用根站点或内容类型访问列,而不依赖于可以在 Sharepoint 应用程序内创建或不创建的列表。

SPFieldChoice choice = (SPFieldChoice)items.Fields[namefield];

                foreach (string choiceName in choice.Choices)
                {
                  //etc...
                }

I want to do this but without accesing the list "items", that is to say, to access the column perhaps with the root site or a contenttype, not depending on a list that can be created or not inside the Sharepoint app.

SPFieldChoice choice = (SPFieldChoice)items.Fields[namefield];

                foreach (string choiceName in choice.Choices)
                {
                  //etc...
                }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼眸里的快感 2024-09-07 16:17:51

您可以使用 web.FieldsContentTypes[typeName].Fields

SPWeb web = ... ;

SPFieldChoice choice = (SPFieldChoice)web.Fields[namefield];

SPFieldChoice choice = (SPFieldChoice)web.ContentTypes[typeName].Fields[namefield];

You can use web.Fields or ContentTypes[typeName].Fields:

SPWeb web = ... ;

SPFieldChoice choice = (SPFieldChoice)web.Fields[namefield];

or

SPFieldChoice choice = (SPFieldChoice)web.ContentTypes[typeName].Fields[namefield];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文