以编程方式获取自定义模板sharepoint 2010

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以编程方式获取自定义模板sharepoint 2010相关的知识,希望对你有一定的参考价值。

要获得标准模板,我会:

private void getTemplates()
{
    string server = serverURL();
    using (SPSite siteCollection = new SPSite(server))
    {
        SPWebTemplateCollection Templates = siteCollection.GetWebTemplates(1033);
        foreach (SPWebTemplate template in Templates)
        {
                ddlSiteTemplate.Items.Add(new ListItem(template.Title, template.Name));
        }
    }
}

我以为我能做到:

private void getTemplates()
{
    string server = serverURL();
    using (SPSite siteCollection = new SPSite(server))
    {
        SPWebTemplateCollection Templates = siteCollection.GetCustomWebTemplates(1033);
        foreach (SPCustomWebTemplate template in Templates)
        {
                ddlSiteTemplate.Items.Add(new ListItem(template.Title, template.Name));
        }
    }
}

要获取自定义模板但下拉列表是空的,我在这里做错了什么?

提前致谢。

编辑:模板在解决方案库中激活。

答案

我得到它与合作

private void getTemplates()
{
    string server = serverURL();
    using (SPSite siteCollection = new SPSite(server))
    {
        SPWebTemplateCollection Templates = siteCollection.GetAvailableWebTemplates(1033);
        foreach (SPCustomWebTemplate template in Templates)
        {
//this gives me all templates, both standard and custom so I filter by name
if(template.name.ToUpper().StartsWith("CUSTOM"))
{
                ddlSiteTemplate.Items.Add(new ListItem(template.Title, template.Name));
}
        }
    }
}
另一答案

SPSite不包含GetAvailableWebTemplates方法。对于那些想要使用代码的人,请使用下面的代码。所以我添加了这行代码:

 using(SPWeb web = siteCollection.OpenWeb())
    {
                SPWebTemplateCollection Templates = web.GetAvailableWebTemplates(1033);

完整代码:

 private void getTemplates()
    {
        string server = serverURL();
        using (SPSite siteCollection = new SPSite(server))
        {
using(SPWeb web = siteCollection.OpenWeb())
{
            SPWebTemplateCollection Templates = web.GetAvailableWebTemplates(1033);
            foreach (SPCustomWebTemplate template in Templates)
            {
    //this gives me all templates, both standard and custom so I filter by name
    if(template.name.ToUpper().StartsWith("CUSTOM"))
    {
                    ddlSiteTemplate.Items.Add(new ListItem(template.Title, template.Name));
    }
}
            }
        }
    }

以上是关于以编程方式获取自定义模板sharepoint 2010的主要内容,如果未能解决你的问题,请参考以下文章

SharePoint:如何以编程方式将项目添加到自定义列表实例

以编程方式在SharePoint文档库中添加/创建新文档

使用客户端对象模型 SharePoint 2010 以编程方式获取 ListItemVersion

将自定义 Web 部件添加到页面 SharePoint 2013 c# csom

markdown 以编程方式为Drupal 8中的错误页面(404等)设置自定义模板

markdown 以编程方式为Drupal 8中的错误页面(404等)设置自定义模板