Click here to Skip to main content
15,890,506 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
This is my logout code.

VB
FormsAuthentication.SignOut()
Session.Clear()        
Response.Cookies(Constants.CookieCompanyCode).Expires = Date.Now.AddHours(-1)
RedirectToLogin()


this is the meta section from master page:

XML
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
 <meta http-equiv="Pragma" content="no-cache">
 <meta http-equiv="Expires" content="0">
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />



This is working as expected on ie9 but on ie8 it redirects to login page but still shows header menu from previouspage and you can click on it and enter the website.If I delete cookies and cache after logout on ie8, it works correctly so I am assuming that it has something to do with them. Any suggestions ??
Posted

1 solution

Hi I could see one link regarding this. Please refer, this may help you.

http://forums.asp.net/t/1366905.aspx/1[^]


Regards
Dominic
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900