vote up 7 vote down star
8

I am writing an application that if the user hits back, it may resend the same information and mess up the flow and integrity of data. How do I disable it for users who are with and without javascript on?

flag

32% accept rate
5  
If i'm using your site, the back button is still MINE. Do not mess with what's mine... ;-) – Shog9 Sep 17 '08 at 20:48

9 Answers

vote up 34 vote down check

It's not possible, sadly. However, consider your applications navigation model. Are you using Post/Redirect/Get PRG Model? http://en.wikipedia.org/wiki/Post/Redirect/Get?

This model is more back button friendly than the Postback model.

link|flag
7  
Nothing sad about it. – Joel Coehoorn Sep 17 '08 at 20:48
2  
Valid point. I'm just sad. ;) – Scott Hanselman Sep 17 '08 at 21:24
Scott - Is the ability to disable the toolbars and right click menu IE specific then? I've seen LOB apps that completely lock down the navigation, but (again sadly) they also require the user have IE. – LuckyLindy Mar 18 at 22:53
1  
Well, some apps can run themselves in "Kiosk" mode, but that involves launch IE with command line switches. – Scott Hanselman Mar 29 at 5:15
vote up 8 vote down

You shouldn't.

You could attach some script to the onbeforeunload event of a page and confirm with the user that's what they want to do; and you can go a bit further and try to disable it but of course that will only work for users who have javascript turned on. Instead look at rewriting the app so you don't commit transactions on each page submit, but only at the end of the process.

link|flag
vote up 0 vote down

You could post the data on each form to a _NEW window. This will disable the back button on each window, but without javascript it might be difficult to force the old one closed.

link|flag
vote up 2 vote down

Here's a previous post on it: http://stackoverflow.com/questions/54539/prevent-use-of-the-back-button-in-ie

link|flag
well, the recommendation engine didn't show it as I created the post :( – Haoest Sep 17 '08 at 21:25
vote up 3 vote down

I strongly urge you to go to heroic lengths to prevent breaking the back button, it is a sure fire way to alienate your users and even made it to No.1 on Jacob Neilsen's Top 10 Web Design Mistakes in 1999.

Perhaps you could consider rather asking the question: "How to avoid breaking the back button for <insert your scenario here>?"

If Scott's answer hits close to the mark, consider changing your flow to the PRG model. If it's something else, then give a bit more detail and see how we can help.

link|flag
He did not say he wanted to "break" the back button. He wants to avoid a common pitfall where modern Ajax design patterns fail because a user presses "Back" meaning "Undo The Thing I Just Did With Your Ajax App" and instead gets "Go Back One Arbitrary And Ambiguous HTTP Request". – pcorcoran Sep 18 '08 at 5:09
To me that just reads "he didn't want to break the back button, he just wanted to break the back button to prevent it being broken". :S It is possible to get AJAX/JavaScript and back buttons to play nice, all I'm suggesting is that would be the route I'd recommend following. – fd Sep 18 '08 at 9:10
vote up 3 vote down

Best option is not to depend on postbacks to control flow, however if you are stuck with it (for now)

you may use something like this:

  Response.Cache.SetCacheability(HttpCacheability.NoCache);
  Response.Cache.SetExpires(Now.AddSeconds(-1));
  Response.Cache.SetNoStore();
  Response.AppendHeader("Pragma", "no-cache");

Soon you will find that it will not work on all browsers, but then you may introduce a check in your code like:

 if (Page.IsPostBack)
 {
        if (pageIsExpired()){
           Response.Redirect("/Some_error_page.htm");
        }
        else {
           var now = Now;
           Session("TimeStamp") = now.ToString();
           ViewState("TimeStamp") = now.ToString();
        }

  private boolean pageIsExpired()
  {
     if (Session("TimeStamp") == null || ViewState("TimeStamp") == null)
        return false;

     if (Session("TimeStamp") == ViewState("TimeStamp"))
        return true;

        return false;
  }

That will solve problem to some extend, Code not checked -- only for examples purposes..

link|flag
vote up -1 vote down

4 Guys from Rolla wrote this article on disabling the back button a long time ago (in a galaxy far far away): http://www.4guysfromrolla.com/webtech/111500-1.shtml

link|flag
vote up 1 vote down

Whatever you come up with to disable the back button might not stop the back button in future browsers.

If its late in the development cycle I suggest you try some suggestions above but when you get time you should structure your flow so that the back button does not interfere with the logic of your site, it simply takes the user back to the previous page like they expect it to do.

link|flag
vote up 0 vote down

If an application is for internal use then there isn't anything wrong with wanting to disabling the back button. I think people that say 'you should't do it' instead of answering the question are just don't know how to do it and want to sound smart.

link|flag

Your Answer

Get an OpenID
or

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