我应该使用什么 ASP.NET 事件?

发布于 2024-09-30 11:17:12 字数 103 浏览 2 评论 0原文

我有一个使用表单身份验证的 asp.net 3.5 应用程序。具有特定引用 IP 地址的请求应绕过表单质询。什么事件(也许在 http 模块中?)是最好的挂钩来实现这个?

问候

I have an asp.net 3.5 app that uses forms authentication. Requests with particular referral IP address should bypass the forms challenge. What event (perhaps in http module??) is the best to hook into to implement this?

regards

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

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

发布评论

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

评论(1

嗳卜坏 2024-10-07 11:17:12

每个请求都会经过 Global.asax 中的事件 Application_BeginRequest,以便您可以在其中使用您的逻辑。

Every request goes through event Application_BeginRequest in Global.asax so you can use your logic there.

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