基于列表定义模板创建列表

本文关键字:列表 创建 定义 于列表 | 更新日期: 2023-09-27 18:28:51

我的解决方案中有一个列表定义,我希望能够以编程方式基于该列表定义创建一个列表,有人能告诉我如何做到这一点吗?

<ListTemplate
    Name="Mylise"
    Type="10778"
    BaseType="0"
    OnQuickLaunch="TRUE"
    SecurityBits="11"
    Sequence="410"
    DisplayName="My new List"
    Description="My own list"
    Image="/_layouts/images/itgen.png"/>

基于列表定义模板创建列表

调用

var customTemplate = yourSPWeb.ListTemplates["Mylise"];

获取列表模板对象,然后

yourSPWeb.Lists.Add("List title", "List description", customTemplate);

以创建列表。

try
{
  SPList list = null;
  using (SPSite site = new SPSite("http://yoursite/"))
  {
     using (SPWeb web = site.RootWeb)
     {
      //List Will be Created Based on this ListDefinition
- OOB Custom List Definition
      //00BFEA71-DE22-43B2-A848-C05709900100
        foreach (SPList _list in web.Lists)
        {
          if (_list.Title.Equals("TestList"))
          {
              list = _list;
          }
        }
        if (list == null)
        {
         web.AllowUnsafeUpdates = true;
         Guid listID = web.Lists.Add("TestList", //List Title
                      "This is Test List",      //List Description
                      "Lists/TestList",         //List Url
                      "00BFEA71-DE22-43B2-A848-C05709900100", //Feature Id of List definition Provisioning Feature – CustomList Feature Id
                       10778,                     //List Template Type
                     "101");      //Document Template Type .. 101 is for None
           web.Update();
           web.AllowUnsafeUpdates = false;
         }
        }

     }
    }
    catch (Exception ex)
    {
    }

希望这对你有帮助:)