Archive for March, 2006

Forcing a Page_Load on BACK button in .NET

There’s a little tip on how to force a page_load when the user press the back button on the browser. In your page_load section, add this line of code: Response.Cache.SetCacheability(HttpCacheability.NoCache) By disabling ASP.NET Caching on a page, we can force a Page_Load on BACK button. There are a few reasons why you would want this [...]

Continue reading » 2 Comments