ASP.NET - C# - Clear History From Server side
This Code For Clear History From Server side in Asp.net
if you press Back it not allowed..
private void Page_Load(object sender, System.EventArgs e)
{
if(!Page.IsPostBack)
{
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetAllowResponseInBrowserHistory(false);
}
}
Search
Thursday, March 13, 2008
ASP.NET - C# - Clear History From Server side
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment