Вопрос

Я разработал модуль, который изменит мастер-страницу, динамически на основе привилегий входа пользователя.

Я последовал за этим руководством:

http://raNaictiu-technalblog.blogspot.it/2009/10/sharepoint-dynamies-change-master.html?showcomment=1354630820782#C5132604142640789136

Все работает хорошо.Но работает только на домашней странице SharePoint.Если попробуйте перейти на другую страницу, как

_layouts / user.aspx

или

/ _ макеты / closeeconnection.aspx

Тогда страница будет сбой!

public class DynamicMasterPageModule : IHttpModule
{
    public void Dispose()
    {


    }


    public void Init(HttpApplication context)
    {
        context.PreRequestHandlerExecute += new EventHandler(context_PreRequestHandlerExecute);
    }


    void context_PreRequestHandlerExecute(object sender, EventArgs e)
    {
        Page page = HttpContext.Current.CurrentHandler as Page;
        if (page != null)
        {
            page.PreInit += new EventHandler(page_PreInit);
        }
    }
void page_PreInit(object sender, EventArgs e)
    {
        Page page = sender as Page;
        string pageNo = ConfigurationManager.AppSettings["MasterPageNo"];




        if (page != null)
        {
            if (pageNo.Equals("1"))
            {
                page.MasterPageFile = "~masterurl/custom.master";
                if (SPContext.Current != null)
                {
                    SPContext.Current.Web.CustomMasterUrl = "/_catalogs/masterpage/custom1.master";
                }
            }
            else if (pageNo.Equals("2"))
            {
                page.MasterPageFile = "~masterurl/custom.master";
                if (SPContext.Current != null)
                {
                    SPContext.Current.Web.CustomMasterUrl = "/_catalogs/masterpage/custom2.master";
                }


            }
            else
            {
                page.MasterPageFile = "~masterurl/default.master";
                if (SPContext.Current != null)
                {
                    SPContext.Current.Web.MasterUrl = "/_catalogs/masterpage/default.master";
                }
            }


        }
.

Ошибка:

The file '/_layouts/masterurl/custom.master' does not exist. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Web.HttpException: The file '/_layouts/masterurl/custom.master' does not exist.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.  

Stack Trace: 


[HttpException (0x80004005): The file '/_layouts/masterurl/custom.master' does not exist.]
   System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath) +11108402
   System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +163
   System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +116
   System.Web.UI.MasterPage.CreateMaster(TemplateControl owner, HttpContext context, VirtualPath masterPageFile, IDictionary contentTemplateCollection) +175
   System.Web.UI.Page.get_Master() +69
   System.Web.UI.Page.ApplyMasterPage() +18
   System.Web.UI.Page.PerformPreInit() +58
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1256
.

Это было полезно?

Решение

Вплоть до моего комментария, код действительно, насмотлен, как это, возможно, неправильно ссылается на главную страницу.

Код должен выглядеть больше похоже на это:

string masterUrl = site.ServerRelativeUrl;

if (!masterUrl.EndsWith(@"/"))
{
    masterUrl = masterUrl + @"/";
}

SPFile file = web.GetFile(masterUrl + "_catalogs/masterpage/custom.master");
.

Это даст правильное разрешение на основе относительного URL для главной страницы.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с sharepoint.stackexchange
scroll top