可以从控制器指定 MasterPage 吗?

发布于 2024-08-13 07:46:11 字数 113 浏览 1 评论 0原文

我有几个不同的用户类型(管理员、用户)和每个用户类型的母版页。我开始创建一些将由两个用户类型使用的视图,我想以编程方式分配母版页(基于 _currentUser)。

可能的?

谢谢

I have a couple different userTypes (Admin, User) and a MasterPage for each. I am beginning to create some Views that will be used by both userTypes where i would like to assign the MasterPage programmaticly (based on _currentUser).

Possible?

thx

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

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

发布评论

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

评论(1

清眉祭 2024-08-20 07:46:11

使用 Controller.View() 重载

return View("MyView", "MyMaster");

在控制器中 来确定视图以及它应该使用的母版页。

public ViewResult Index() {
  if (User.IsInRole("Admin")) {
    return View("Index", "AdminMaster");
  }
  else {
    return View("Index", "DefaultMaster");
  }
}

Use Controller.View() overload

return View("MyView", "MyMaster");

in your controller to determine the view and the master page it should use.

public ViewResult Index() {
  if (User.IsInRole("Admin")) {
    return View("Index", "AdminMaster");
  }
  else {
    return View("Index", "DefaultMaster");
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文