开发者

What asp.net event should I use?

开发者 https://www.devze.com 2023-01-23 03:13 出处:网络
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

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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消