我应该使用什么 ASP.NET 事件?
我有一个使用表单身份验证的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个请求都会经过
Global.asax
中的事件Application_BeginRequest
,以便您可以在其中使用您的逻辑。Every request goes through event
Application_BeginRequest
inGlobal.asax
so you can use your logic there.