hi,
anybody to tell me how to diasable browser button after logout
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
John RobPosted Dec 8, 2011, 10:18 AM
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetExpires(DateTime.UtcNow.AddHours(-1));
Response.Cache.SetNoStore();
It might be useful for you.
For more details you may check out this link...