我需要在不访问列表的情况下获取 Sharepoint 2007 中 Sharepoint 字段选择列的值
我想要执行此操作,但不访问列表“项目”,也就是说,可能使用根站点或内容类型访问列,而不依赖于可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
web.Fields
或ContentTypes[typeName].Fields
:或
You can use
web.Fields
orContentTypes[typeName].Fields
:or