Reputation: 215
I need for my asp.net aplication not auto-redirect to my web.config login page when i hit Session.abandon() methods. some ideas? this is my web.config file
Upvotes: 0
Views: 28
Reputation: 5660
You can do:
Response.Redirect("somePage.aspx")
after you do Session.Abandon()
Upvotes: 1