3,245
社区成员
发帖
与我相关
我的任务
分享
//Check if sub site exists at given site collection
private static bool isWebExists(SPSite spSite, string webRelativeUrl)
{
bool returnVal = false;
using (SPWeb currentWeb = spSite.OpenWeb(webRelativeUrl, true))
{
returnVal = currentWeb.Exists;
}
return returnVal;
}
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spweb.exists(v=office.12).aspx
using (SPSite site = new SPSite ("http://mosshost/" ))
{
SPWebTemplateCollection temlates1 = site.GetCustomWebTemplates(1033);
SPWebTemplateCollection temlates = site.GetWebTemplates(1033);
.........
}
1033是英文的语言代码,中文好像是2052