使用Sharepoint Web服务获取自定义字段的ID / GUID

时间:2010-12-13 18:02:21

标签: c# sharepoint webservices-client

我正在尝试使用Web服务从我的一个文档库中获取自定义列字段的ID / GUID。如何在C#中实现这一目标?

2 个答案:

答案 0 :(得分:0)

奥拉!

在C#中尝试这个

SPWeb web = SPContext.Current.Web as SPWeb;
Guid id = web.AvailableContentTypes["ContentTypeName"].Fields["FieldName"].Id;

此致

佩德罗

答案 1 :(得分:0)

您需要通过SiteData网络服务获取GUID,网站Web服务不会检索ID ....

http://social.msdn.microsoft.com/Forums/en-US/sharepointdevelopment/thread/3dd5871c-b52e-45c9-8ab2-9b9be092dede/