gpt4 book ai didi

.net - 在sharepoint中使用SPListCollection.Add方法(字符串,字符串,字符串,字符串,Int32,字符串,SPListTemplate.QuickLaunchOptions)

转载 作者:行者123 更新时间:2023-12-02 04:13:39 24 4
gpt4 key购买 nike

如何使用

SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchOptions)`

asp.net以编程方式创建SharePoint文档库的方法?

最佳答案

添加出现在“快速启动”区域中的文档库

艰难的方式-使用Add(String, String, String, String, Int32, String, String, SPFeatureDefinition, SPListTemplate.QuickLaunchOptions)方法重载

web.Lists.Add("Old documents",
"This library stores old documents.",
"old-docs",
"00BFEA71-E717-4E80-AA17-D0C71B360101",
101,
"101",
SPListTemplate.QuickLaunchOptions.On);
  • featureId参数(第四个)是一个字符串,其中包含定义列表的功能的ID;您可以在线找到标准列表定义的功能ID(hereherehere)或在12个配置单元
  • 中的相应文件中找到

    简单方法-分2个步骤
    Guid newListGuid = web.Lists.Add("Old documents",
    "This library stores old documents.",
    SPListTemplateType.DocumentLibrary);

    SPList newList = web.Lists[newListGuid];
    newList.OnQuickLaunch = true;
    newList.Update();

    关于.net - 在sharepoint中使用SPListCollection.Add方法(字符串,字符串,字符串,字符串,Int32,字符串,SPListTemplate.QuickLaunchOptions),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3863779/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com