моделирование объектов sharepoint - PullRequest
1 голос
/ 07 октября 2010
protected void btnCreateList_Click(object sender, EventArgs e)
{
    SPWeb currentWeb = SPContext.Current.Web;

    Guid webId = currentWeb.ID;

    Guid siteId = currentWeb.Site.ID;
    Response.Write(siteId);

    SPSecurity.RunWithElevatedPrivileges(delegate()
    {
        using (SPSite site = new SPSite(siteId))
        {
            using (SPWeb web = site.OpenWeb(webId))
            {
                site.AllowUnsafeUpdates = true;
                Response.Write("configured successfully");



            }
        }
    });



}

Ответы [ 2 ]

1 голос
/ 07 октября 2010

Введите реальный URL в свой код, вы можете использовать его так:

using(SPSite oSiteCollection = new SPSite("http://Your_Server_Name"))
{
    using(SPWeb oWebsite = oSiteCollection.OpenWeb("Your_Website_URL"))
    {
        using(SPWeb oWebsiteRoot = oSiteCollection.RootWeb)
        {
           ...
        }
    }
}
1 голос
/ 07 октября 2010

Возможно, вы выполняете код вне SharePoint или до инициализации SPContext (например, обработчик HTTP).

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...