vote up 1 vote down star
1

In my ASP.NET web app, I'm trying to create a universal way of warning users before navigating away from a form when they've made changes, using jQuery. Pretty standard stuff, but after a lot of searching I have yet to find a technique that works.

Here's what I have at this point:

    addToPostBack = function(func) {
        var old__doPostBack = __doPostBack;
        if (typeof __doPostBack != 'function') {
            __doPostBack = func;
        } else {
            __doPostBack = function() {
                old__doPostBack();
                func();
            }
        }
    }

    var isDirty = false;

    $(document).ready(function() {
        addToPostBack(function() {
            alert("Postback detected.")
            clearDirty();
        });
        $(':input').bind("change select keydown", setDirty);
        window.onbeforeunload = function(e) {
            var msg = "You have unsaved changes. "
            if (isDirty == true) {
                var e = e || window.event;
                if (e) { e.returnValue = msg; }
                return msg;
            }
        };
    });

    setDirty = function() {isDirty = true;}

    clearDirty = function() {isDirty = false;}

This works as far as warning the user from navigating away. The problem is that I get the warning on every same-page postback. There are a number of things on my forms that might trigger a postback:

  1. There are Save, Cancel, and Delete linkbuttons on the page
  2. There might be other linkbuttons on the page that execute server-side functionality while staying on the same page
  3. There might be other controls with autopostback=true that also have server-side functions attached to them, but which don't result in the user leaving the page.

None of these things should provoke a warning, because the user isn't leaving the page. My code tries to hijack addToPostBack (more details on that in this question) to clear the isDirty bit before posting back, but the problem is that in IE onbeforeunload fires before __doPostBack, apparently because IE fires onbeforeunload immediately when a link is clicked (as described here).

Of course, I could wire up each of these controls to clear the isDirty bit, but I'd prefer a solution that operates on the form level and that doesn't require that I touch every single control that might trigger a postback.

Does anyone have an approach that works in ASP.NET and that doesn't involve wiring up every control that might cause a postback?

flag

78% accept rate
You could just cheat and check the SO source code to see what they do. – R. Bemrose Aug 5 at 18:49
SO uses beforeunload, but it's MVC == no postbacks == doesn't have Herb's particular problem. – Craig Stuntz Aug 5 at 19:08

1 Answer

vote up 0 vote down

You could always create an inheirited page class that has a custom OnLoad/OnUnload method that adds in immediate execution javascript.

Then you don't have to handle it at a control specific level but rather the form/page level.

link|flag
Not clear on what you're suggesting. What would this this method/methods do? – Herb Caudill Aug 5 at 20:14

Your Answer

Get an OpenID
or

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