I have a hyperlink on my dashboard Window(Dashboard.aspx), which i have to use for logging out of the page. For now i’ve used ‘NavigateURL’ to redirect it to the main Login page(LoginPage.aspx). On login page i dont want to get back to the dashboard again. BTW, i’m new to this, so i guess i have to disable browser from caching or create session at login and destroying it, etc. I dont want the user should be able to get back to the dashboard.aspx page on clicking the browser’s back button. Please provide me with the steps/code(vb.net) for the same. Looked over the internet, however couldnt able to understand the stuff. Thanks
I have a hyperlink on my dashboard Window(Dashboard.aspx), which i have to use for
Share
If you are using session to maintain your pages access throughout your application, you can use
Session.Clear()andSession.Abondon()before redirecting your page to “LoginPage.aspx”.I hope this answers your question. If yes, please mark it as “answered”.