无论如何我可以确定哪个Master页面当前在Sharepoint 2010安装中设置为默认值?
答案 0 :(得分:7)
查看http://<servername>/_Layouts/ChangeSiteMasterPage.aspx
以编程方式,您可以查看网络的CustomMasterUrl
或MasterUrl
属性。
答案 1 :(得分:1)
默认情况下为v4.master。您可以访问VS.NET 2010的Server Explorer并添加与Site Collection的连接,并检查网站集的RootWeb的“MasterUrl”和“CustomMasterUrl”属性。
答案 2 :(得分:0)
如上所述,V4.master是应用于网站的默认母版页。 你可以在c:... \ 14 \ TEMPLATE \ LAYOUTS \ V4.master
中找到这个页面在这篇博客中,我发布了如何创建&amp;使用VS 2010以编程方式部署自定义母版页。
http://markviky.blogspot.com/2010/11/sharepoint-2010-web-content-management.html
-Vighnesh