如何正确更改页面的母版页?



我的ASP中有两个母版页。网络应用程序。一种用于日常使用,另一种用于印刷。我使用会话参数来查看应用程序当前是否处于打印模式:

method Global.Application_PreRequestHandlerExecute(src: System.Object; e: EventArgs);
begin
  var p: System.Web.UI.Page := System.Web.UI.Page(self.Context.Handler);
  if p <> nil then begin
    p.PreInit += new EventHandler(page_PreInit)
  end
end;
method Global.page_PreInit(sender: System.Object; e: EventArgs);
begin
  var p: System.Web.UI.Page := System.Web.UI.Page(self.Context.Handler);
  if p <> nil then
    if p.Master <> nil then
    begin
      if Session['P'].ToString = '1' then
        p.MasterPageFile := '~/Print.Master'
      else
        p.MasterPageFile := '~/Site.Master'; 
    end;
end;

我有一个按钮在我的正常页面设置Session['P']'1',另一个在我的打印母版页面设置Session['P']'0'。现在,我的问题是,在我更改了代码中的会话参数之后,使用过时的母版页而不是当前的母版页呈现页面。用户必须按下F5才能看到正确的页面。似乎我的page_PreInit()事件在buttonClick()之前被触发。那么,我能做什么呢?

Page_PreInit在任何click事件处理程序之前运行。

你是否考虑过使用面板或样式表在打印模式下呈现你的页面?

我最后在我的Page_PreInit事件中使用Request.Params['__EVENTTARGET']来确定单击的控件是否是在正常打印模式之间切换的按钮。我的代码是这样的:

S := Request.Params['__EVENTTARGET'];
if S.Length > 0 then
  S := S.Substring(S.IndexOf('$') + 1);
if S = 'lbPrint' then
  Session['P'] := '1'
else if S = 'lbNormal' then
  Session['P'] := '0';

相关内容

  • 没有找到相关文章

最新更新