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

link|improve this question

63  
You don't own your users' computers or their browsers. – Instance Hunter Jun 7 '09 at 4:58
26  
+1 Because although I agree that disabling the browsers back button is 'bad practice', I see no reason for downvoting the question itself, answering and explaining why is the way to go imo. – ChristopheD Jun 7 '09 at 5:14
22  
Why are we being hostile to this question? For all we know, the person asking this question already knows that this is poor usability practice but are just following requirements, or maybe they just want to learn something. Why don't we just pretend this is a hypothetical question, and answer how we would do it IF we were to do that sort of thing? – thomasrutter Jun 7 '09 at 5:22
5  
Some things should never be done, regardless of any desire to do them. Having a non-negotiable requirement for this instantly says that the requirements were set by people with no business setting them, which is a much bigger problem. – annakata Jun 8 '09 at 9:10
15  
ugh, I authored the most awesome comment ever, but lost it when I accidentally hit the back button. – Dan Williams Jul 28 '10 at 20:11
show 3 more comments
feedback

12 Answers

up vote 6 down vote accepted

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)
link|improve this answer
7  
Note that making the page un-cacheable does not achieve what the OP wanted: to disable visiting pages using the back button. Even if a browser obeys no-cache when using the back button (which browsers are not obliged to do AFAIK) they still provide a way to reload that page (usually after showing a warning dialog). So if you really don't want your users going back to that page, this may be worse, since the request for that page will HAVE to make its way all the way to the origin server. You will need something server-side to detect that the page has been revisited. Headers can be ignored. – thomasrutter Nov 11 '09 at 3:31
feedback

Do not disable expected browser behaviour. Make your pages handle the possibility of users going back a page or two; don't try to cripple their software.

link|improve this answer
feedback

Others have taken the approach to say "don't do this" but that doesn't really answer the poster's question. Let's just assume that everyone knows this is a bad idea, but we are curious about how it's done anyway...

You cannot disable the back button on a user's browser, but you can make it so that your application breaks (displays an error message, requiring the user to start over) if the user goes back.

One approach I have seen for doing this is to pass a token on every URL within the application, and within every form. The token is regenerated on every page, and once the user loads a new page any tokens from previous pages are invalidated.

When the user loads a page, the page will only show if the correct token (which was given to all links/forms on the previous page) was passed to it.

The online banking application my bank provides is like this. If you use the back button at all, no more links will work and no more page reloads can be made - instead you see a notice telling you that you cannot go back, and you have to start over.

link|improve this answer
My bank takes a different approach - it terminates the session entirely. Using the back button is equivalent to loging out. – RobG Mar 16 at 7:43
feedback

I came up with a little hack that disables the back button using JavaScript. I checked it on chrome 10, firefox 3.6 and IE9:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<title>Untitled Page</title>
<script type = "text/javascript" >
function changeHashOnLoad() {
     window.location.href += "#";
     setTimeout("changeHashAgain()", "50"); 
}

function changeHashAgain() {
  window.location.href += "1";
}

var storedHash = window.location.hash;
window.setInterval(function () {
    if (window.location.hash != storedHash) {
         window.location.hash = storedHash;
    }
}, 50);


</script>
</head>
<body onload="changeHashOnLoad(); ">
Try to hit the back button!
</body>
</html>
link|improve this answer
What are you doing in this code snippet? Can you explain? – sun123 Jul 28 '11 at 9:58
how does this work? – Răzvan Panda Aug 11 '11 at 6:32
1  
It looks like this script adds "#" to the URL when the page loads, and every 50ms, it appends a 1 to the URL. – ashes999 Sep 6 '11 at 14:13
This script leverages the fact that browsers consider whatever comes after the "#" sign in the URL as part of the browsing history. What it does is this: When the page loads, "#1" is added to the URL. After 50ms the "1" is removed. When the user clicks "back", the browser changes the URL back to what it was before the "1" was removed, BUT - it's the same web page, so the browser doesn't need to reload the page. – Yossi S Nov 29 '11 at 12:35
note that the URL changes twice: We only do this in order to disguise the implementation, so nobody will see that we added "1". So actually when the user clicks back, the page re-adds the "#1" for a moment and removes it again. BTW - it doesn't have to be "1", it can be any string. – Yossi S Nov 29 '11 at 12:35
feedback

Condemning the question without knowing the context is a bit harsh. I, for instance, would love to know the proper way to do this: currently I'm running an online psychology experiment, and sometimes participants press the back button (backspace or 'delete' when on a mac) instead of the enter key, by accident. This can potentially mess up the experiment and thus ruin the data (which thankfully hasn't happened yet). This is obviously a case where the input needs to be confined.

Ofcourse I do agree that in the rule this is a very bad idea... but that has been made clear abundantly already.

link|improve this answer
As others have said: if this can mess up the experiment, it is designed incorrectly. – reinierpost Jun 14 '11 at 11:56
BS. That's like saying that someone getting drunk and driving his car into a tree means the car wasn't designed correctly. Someone accidentally navigating away from a timing-sensitive experimental page isn't bad design, it's a technical problem. – shanusmagnus Apr 10 at 15:41
feedback

If you rely on client-side technology, it can be circumvented. Javascript may be disabled, for example. Or user might execute a JS script to work around your restrictions.

My guess is you can only do this by server-side tracking of the user session, and redirecting (as in Server.Transfer, not Response.Redirect) the user/browser to the required page.

link|improve this answer
feedback

You should be using posts with proper expires and caching headers.

link|improve this answer
See my comment on this answer for why that doesn't work. – thomasrutter May 18 '11 at 0:50
feedback

Instead of trying to disable the browser back button it's better to support it. .NET 3.5 can very well handle the browser back (and forward) buttons. Search with Google: "Scriptmanager EnableHistory". You can control which user actions will add an entry to the browser's history (ScriptManager -> AddHistoryPoint) and your ASP.NET application receives an event whenever the user clicks the browser Back/Forward buttons. This will work for all known browsers

link|improve this answer
feedback
<body onLoad="if(history.length>0)history.go(+1)">
link|improve this answer
feedback

There have been a few different implementations. There is a flash solution and some iframe/frame solutions for IE. Check out this

http://www.contentwithstyle.co.uk/content/fixing-the-back-button-and-enabling-bookmarking-for-ajax-apps

BTW: There are plenty of valid reasons to disable (or at least prevent 1 step) a back button -- look at gmail as an example which implements the hash solution discussed in the above article.

Google "how ajax broke the back button" and you'll find plenty of articles on user testing and the validity of disabling the back button.

link|improve this answer
Check out Facebook's new photo viewer as well. Notice that the back button takes you back a photo (which is what you want) instead of doing the browser default – DallinDyer Mar 4 '11 at 16:24
feedback

i was searching for the same question and found following code on a site. thought to share it here.

function noBack(){window.history.forward()}
noBack();
window.onload=noBack;
window.onpageshow=function(evt){if(evt.persisted)noBack()}
window.onunload=function(){void(0)}

however as noted by above users, this is never a good practice and should be avoided for all reasons.

link|improve this answer
feedback

While i'm looking for the answer myself, "Best Practice" is.... outdated... Just like browsers are.(Really browsers are ugly fossils)

The best/safest solution would be for browsers to implement a method/request where the user can grant the page the ability to control the interface.

Why? Because for my current project i'm building a 100% JavaScript built and controlled interface.. And back button's have no place in my project since there is no page change. (Ie bloody fast and no page-flashes because of a refresh.. Just like a real application!)

I know why the ability to "highjack" the interface isn't there, and i understand it. But atleast we should have the ability to request it from the browser! Now that would truly be "best practice" without the highjack dangers.

But browsers being browsers.. I don't expect anything exiting to happen in this regard.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.