Disable browser's back button

asp.net, javascript

Solution

This question is very similar to this one...

You need to force the cache to expire for this to work. Place the following code on your page code behind.

Page.Response.Cache.SetCacheability(HttpCacheability.NoCache)

Problem

How to disable browser's BACK Button (across browsers)?

Original source

Related problems