确定共享点页面的显示模式

问题描述 投票:5回答:5

在尝试找到好的解决方案时,我有很多次这个问题并且很无聊。不明白为什么微软不包括可以轻松确定显示页面模式的方法:“正常显示”或“设计模式”。它有许多检查不同变量的建议,但它不能唯一地说明设计页面在不同类型的页面(webpart页面和wiki页面)和回发与否。

终于累了我,我写了这个:

    public static bool IsDesignTime()
    {
        if (SPContext.Current.IsDesignTime) return true;

        if (HttpContext.Current.Request.QueryString["DisplayMode"] != null)
            return true;

        var page = HttpContext.Current.Handler as Page;

        if(page == null) return false;

        var inDesign = page.Request.Form["MSOLayout_InDesignMode"];
        var dispMode = page.Request.Form["MSOSPWebPartManager_DisplayModeName"];
        var wikiMode = page.Request.Form["_wikiPageMode"];
        var we = page.Request.Form["ctl00$PlaceHolderMain$btnWikiEdit"];

        if (inDesign == null & dispMode == null) return false; //normal display

        if (we == "edit") return true; //design on wiki pages

        if (page is WikiEditPage & page.IsPostBack & inDesign == "" & dispMode == "Browse" & wikiMode == "") return false; //display wiki on postback


        if (inDesign == "" & dispMode == "Browse" & (wikiMode == null | wikiMode == "")) return false; //postback in webpart pages in display mode

        if (inDesign == "0" & dispMode == "Browse") return false; //exiting design on webpart pages

        return true;
    }

有人有更好的解决方案吗?

c# asp.net sharepoint-2010
5个回答
12
投票

你有2个案例来检测页面模式:

如果您使用的是团队网站:

    if (Microsoft.SharePoint.SPContext.Current.FormContext.FormMode == SPControlMode.Edit)
    {
        ltr.Text = "EditMode2";
    }
    else
    {
        ltr.Text = "ViewMode";
    }

如果您使用的是发布网站:

if (Microsoft.SharePoint.SPContext.Current.FormContext.FormMode == SPControlMode.Display)
  {
   // your code to support display mode
  }
  else // Microsoft.SharePoint.SPContext.Current.FormContext.FormMode = SPControlMode.Edit
  {
   // your code to support edit mode
  }

5
投票

如果您在WebpartPage中的工作比下面的代码适合我

 WebPartManager mgr = this.WebPartManager;
 if (mgr.DisplayMode == WebPartManager.EditDisplayMode)
    {
        // logic when in Edit Mode
    }
 else
    {

    }

3
投票

考虑到所有场景,我很难在Sharepoint 2013中获得任何这些答案。我也无法让EditModePanel始终如一地工作。我在this article找到了一个片段,似乎在我迄今为止尝试过的每一个场景中都有效。

注意:这在Page_Init中不起作用,但可以在Page_Load中起作用

var isPublishing = SPContext.Current.FormContext.FormMode != SPControlMode.Invalid;
var wpDMode = WebPartManager.GetCurrentWebPartManager(Page).DisplayMode.Name;
var isEditing = isPublishing
     ? SPContext.Current.FormContext.FormMode != SPControlMode.Display
     : (wpDMode.Equals("Edit") || wpDMode.Equals("Design"));

然后你可以简单地检查isEditing的条件。


2
投票

请试试这个代码..

if (Microsoft.SharePoint.SPContext.Current.FormContext.FormMode == SPControlMode.Display)
  {
   // your code to support display mode
  }
  else // Microsoft.SharePoint.SPContext.Current.FormContext.FormMode = SPControlMode.Edit
  {
   // your code to support edit mode
  }

0
投票

处理SharePoint页面模式。

这对我有用,我通过使用下面的行解决了我的关键问题。

if (Microsoft.SharePoint.SPContext.Current.FormContext.FormMode == SPControlMode.Edit)
{
    alert.Text = "EditMode2";
}
else
{
    alert.Text = "ViewMode";
}
© www.soinside.com 2019 - 2024. All rights reserved.