ASP.NET 母版页 Page_Load Override

发布于 2024-08-19 06:32:51 字数 174 浏览 5 评论 0原文

我的网站有一个母版页,用于设计网站其余部分的样式并进行用户身份验证。这工作得很好,只是我有一个页面想要保留母版的样式,但不进行身份验证,因为这是一个页面,告诉用户他们没有经过身份验证。如何从这一页重写 MasterPage 的 Page_Load 方法?关于如何在不从主站移动身份验证的情况下无法在这一页上进行身份验证的任何其他想法?

I have a Master page for my site that is used for styling the rest of the site and doing user authentication. This works fine except that I have one page that I would like to retain the styling from the master but not do the authentication since this is the page that tells the user that they aren't authenticated. How could I override the MasterPage's Page_Load method from this one page? Any other thoughts on how I could not authenticate on this one page without moving authentication from the master?

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

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

发布评论

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

评论(3

2024-08-26 06:32:51

也许可以在 Request.Current.Url 中的某个位置检查母版页中的当前页面名称 (Whatever.aspx) 并跳过对其进行身份验证。

Maybe check in your master page somewhere in Request.Current.Url for the current page name (Whatever.aspx) and skip authentication for it.

迟月 2024-08-26 06:32:51

您可以在母版页上创建一个默认为 true 的属性,这意味着应该进行身份验证。然后,您可以在单页的初始化逻辑内将该属性设置为 false。当母版页尝试进行身份验证时,它应该首先检查此属性的状态。

有关如何与此类母版页进行通信的示例,请查看 此内容的抽象交互部分文章

You can create a property on your master page that defaults to true, meaning that authenitcation should happen. You can then set that property inside of the initialization logic for the single page to false. When the master page tries to do authentication, it should first check for the state of this property.

For an example of how to communicate with a master page like this, take a look at the Abstract Interaction section of this article.

柒夜笙歌凉 2024-08-26 06:32:51

使用Request.Current.Url 检测页面是一个很好的解决方案。

另一种方法是使用 LoginView它具有 LoggedInTemplate、AnonymousTemplate 和用于内容查看的角色支持。

Detecting page by using Request.Current.Url is a good solution.

Another way is to use LoginView which has LoggedInTemplate, AnonymousTemplate and roles support for content viewing.

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