虽然传递sharepoint字段的内部不起作用

时间:2014-04-20 08:58:10

标签: c# sharepoint-2010

我正在使用列显示名称读取sharepoint文档库的文件属性,使用以下代码正常工作:

SPFile spFile=Web.GetFile(Context.Request.Url.ToString());
string spDocumentType=string.Empty;
if (Convert.ToString(spFile.Properties["Document Type"]) == "INV") 
 {
 spDocumentType = Convert.ToString(spFile.Properties["Document Type"]);
}

但是当我传递“文档类型”字段的内部名称时,如下所示它不起作用或不读取字段值,我如何读取传递内部名称的字段值?

SPFile spFile=Web.GetFile(Context.Request.Url.ToString());
string spDocumentType=string.Empty;
if (Convert.ToString(spFile.Properties["Document_x0020_Type"]) == "INV") 
 {
 spDocumentType = Convert.ToString(spFile.Properties["Document_x0020_Type"]);
}

0 个答案:

没有答案