更改母版页时如何保留内容页控件的视图状态?



我在我的全局使用这段代码。修改母版:

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
    p.PreInit += new EventHandler(page_PreInit)
end;
method Global.page_PreInit(sender: System.Object; e: EventArgs);
var
  S: String;
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 Request.Params['__EVENTTARGET'] <> nil then
      begin
        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';
        if Session['P'].ToString = '1' then
          S := '/Print.Master'
        else
          S := '/Site.Master';
        if not p.MasterPageFile.ToUpper.Equals(S.ToUpper) then
          p.MasterPageFile := S;
      end;
    end;
end;

无论何时更改母版页,内容页中所有控件的视图状态都将丢失。我想知道如何保存它们……

更改母版确实会影响生成的控件结构。因此ASP。. NET无法加载视图状态,因为它使用控件索引来加载。

我不知道你用的是哪个版本的。net,但也许有一个解决方案。

你试过ViewStateModeByIdAttribute了吗?

您可能需要使用此属性的自定义容器控件,并且是INamingContainer的实现。

相关内容

  • 没有找到相关文章

最新更新