这是针对SP 2013的,我尝试读取“项目”内容类型并尝试使用
lstitm["ContentTypeId"] = "Content Type Id";
在更新或插入要列出的项目时,它仍然显示
更新:
好像是问题,我尝试使用以下代码更新或插入项目
_lstitm["Title"]="";
_lstitm["ProjectName"]=""
但是我原本是在写类似下面的内容,但是没有用:
string[] cols=new string[] {"Title","ProjectName"};
foreach (var col in cols)
{
_lstitm[col]=getvaluforcolumn(col); //method to fetch value for column
}