dexter
dexter

Reputation: 7213

What asp.net event should I use?

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

Upvotes: 1

Views: 48

Answers (1)

Adeel
Adeel

Reputation: 19228

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

Upvotes: 2

Related Questions