我正在使用列显示名称读取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"]);
}