ASP.NET MVC 中动态更改主模板

发布于 2024-07-08 09:15:35 字数 130 浏览 3 评论 0原文

我需要在我的应用程序(ASP.NET MVC)上支持不同的母版页。 推荐的方法是什么:

  1. 将母版页名称传递给视图。
  2. 存储母版页(在会话中或其他内容中),以便在用户访问期间保留它。

I have the requirement to support different Master pages on my application (ASP.NET MVC).
What is the recommended way to:

  1. Pass the master page name to the view from.
  2. Store the master page (in session, or something) so it sticks during a user's visit.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

星軌x 2024-07-15 09:15:35

使用自定义基本控制器并从中继承:

Public Class CustomBaseController
    Inherits System.Web.Mvc.Controller

    Protected Overrides Function View(ByVal viewName As String, ByVal masterName As String, ByVal model As Object) As System.Web.Mvc.ViewResult

       Return MyBase.View(viewName, Session("MasterPage"), model)

    End Function

End Class

我在 global.asax Session_Start 中设置了 Session 变量:

Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)

//programming to figure out your session
Session("MasterPage")="MyMasterPage"

End Sub

Use a custom base controller and inherit from it instead:

Public Class CustomBaseController
    Inherits System.Web.Mvc.Controller

    Protected Overrides Function View(ByVal viewName As String, ByVal masterName As String, ByVal model As Object) As System.Web.Mvc.ViewResult

       Return MyBase.View(viewName, Session("MasterPage"), model)

    End Function

End Class

I set my Session variable in the global.asax Session_Start:

Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)

//programming to figure out your session
Session("MasterPage")="MyMasterPage"

End Sub
贪恋 2024-07-15 09:15:35

您可以将母版页名称放入会话中,但会话不可靠。 我建议将其放入数据库中。

进入页面后,您可以通过访问 page.masterpagefile 更改/设置母版页。 它是一个字符串; 只需传入 .master 名称即可。

you could throw the master page name into the session, but sessions are unreliable. i'd recommend throwing it in a db instead.

once you're in the page, you can change/set the master page by accessing page.masterpagefile. it's a string; just pass the .master name in.

相思故 2024-07-15 09:15:35

为什么不在用户个人资料中保留母版页?
然后只需在 PreLoad 事件上更改它即可。

http://www.odetocode.com/articles/440.aspx

Why not keep the Master Page on the user profile?
Then just change it on the PreLoad event.

http://www.odetocode.com/articles/440.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文