在SharePoint列表中需要帮助。
|
我获得了使用Visual Studio 2010创建自定义SharePoint列表的代码。但是我在哪里可以将此代码放置在Visual Studio 2010中的任何地方都没有提到。有人可以帮我吗?我真的很挣扎。这是代码:
using (SPSite oSPsite = new SPSite(\"http://Web URL\"))
{
oSPsite.AllowUnsafeUpdates = true;
using (SPWeb oSPWeb = oSPsite.OpenWeb())
{
oSPWeb.AllowUnsafeUpdates = true;
/* 1. create list from custom ListTemplate present within ListTemplateGalery */
SPListTemplateCollection lstTemp = oSPsite.GetCustomListTemplates(oSPWeb);
SPListTemplate template = lstTemp[\"custom template name\"];
oSPWeb.Lists.Add(\"List Name\", \"Description\", template);
/* 2. create list from sharepoint list content type (e.g. Links) */
oSPWeb.Lists.Add(\"List Name\", \"Description\", SPListTemplateType.Links);
oSPWeb.AllowUnsafeUpdates = false;
}
oSPsite.AllowUnsafeUpdates = false;
}
没有找到相关结果
已邀请:
2 个回复
到街客核
赐黄