0

我正在尝试通过控制台应用程序将列表添加到站点。这是我到目前为止所拥有的。

namespace spConsole
{
class Program
{
    static void Main(string[] args)
    {
        using (SPSite site = new SPSite("http://spdev.com/SitePages/Home.aspx"))
        {
            SPWebCollection webcoll = site.AllWebs;

            SPWeb web = webcoll["SubSite1"];

            SPList newList = web.Lists.Add("New List", "Description", SPListTemplateType.GenericList);                             

        }
    }
}
}

我收到以下错误:无法将类型“System.Guid”隐式转换为“Microsoft.SharePoint.SPList”

有人可以告诉我我做错了什么吗?

4

1 回答 1

0

您尚未创建 SPSite 的实例

请按照此链接以编程方式创建新列表

http://sarangasl.blogspot.com/2009/11/create-sharepoint-list-programmatically.html

或者

http://www.mindfiresolutions.com/Create-List-Programmatically-in-SharePoint-274.php

于 2013-01-28T07:27:30.153 回答