Logout Problem
-
Hi All, Here in my web-application.When I click on LogOut button it'll signout but if I go through back button left most cornner of explorer it'll work like signin, how to solve that problem. Please Help. Regards: SMK
-
Hi All, Here in my web-application.When I click on LogOut button it'll signout but if I go through back button left most cornner of explorer it'll work like signin, how to solve that problem. Please Help. Regards: SMK
When a page loads, check if the session for that user exists or not. If its null, then ask him to sign in.
-
Hi All, Here in my web-application.When I click on LogOut button it'll signout but if I go through back button left most cornner of explorer it'll work like signin, how to solve that problem. Please Help. Regards: SMK
When you click back you are not actually reloading the page, what you see is the browsers cached copy of the page. Are you using the ASP.NET membership controls for authentication? If so, when you try do something on a cached page that requires authentication you will be booted to the login page.
-
Hi All, Here in my web-application.When I click on LogOut button it'll signout but if I go through back button left most cornner of explorer it'll work like signin, how to solve that problem. Please Help. Regards: SMK