Logout issue : Copy the URL of the user page and paste user after logout show the page only IE has Issue
When i working on the project ,i faced the issue - that i am sharing to u. ex: When the user login in to his account then do some navigation inside User page - at this stage I copied the URL then i Click Logout button.
Once i logged out if i paste the Copied URL on that page it redirect to the user Page, when i do some navigation (or clicking any button on that page ) its has been redirect to Login page , but this should not occur like this if i paste the URL it will directly redirect to the Login page only.This issue will not occur on Mozilla , IE 8 version. it occurs only on IE browser.
Even if I set the Session on page_load event but no use. So the thing is Cache ie: the page has been cached stored on Client Browser, so we need to disable the cache.
So Add this line on Master Page inside the Head Tag.
Even if I set the Session on page_load event but no use. So the thing is Cache ie: the page has been cached stored on Client Browser, so we need to disable the cache.
So Add this line on Master Page inside the Head Tag.
<meta http-equiv="PRAGMA" value="NO-CACHE"></meta> <meta content="Mon, 01 Jan 1990 12:00:00 GMT" http-equiv="Expires"></meta>
Read more »