Skip to main content
Email Password   helpLost your password?

Introduction

Have any of your users ever told you that after filling that long data entry form he accidentally closed the browser or moved to another page and forgot to click the save button? I heard this story more than once, and at the end my responses I often told he user something like "Well, you should pay more attention when you're filling out a form." Of course, I didn't say it using these words, but that was the only thing we could say.

In fact, keeping track of fields that were changed in classical ASP.NET forms is not an easy task. Since every postback fires the onbeforeunload event, there was no generic way of knowing if the postback was intentional or not. So we had to write a lot of custom JavaScript to manage that.

Now in the AJAX world, this limitation is gone. If we have a 100% "ajaxfied" page, the onbeforeunload event will fire only if the user actually leaves the page. It makes our lives much easier.

This is a Panel that automatically detects if any control inside it was changed and shows an alert if the user tries to leave the page before saving the data.

Click here to see a sample page.

Using the code

Once again I am using the Anthem.NET library to give AJAX functionality. This webcontrol inherits from the Anthem Panel, so what you need to do is to put all your data entry controls within this panel and set the property OnLeaveMessage. This property corresponds to the message that will be shown when the user tries to leave the page without saving its contents. When the user actually clicks the save button, you need to tell the panel to store the new values so it won't show the alert when the user leaves the page. This is done by calling the panel's Reset method when the data is saved.

The download file contains the webcontrol and a sample page.

Conclusion

This is a simple to use, yet very useful webcontrol that can enhance the usability of your web application.

I hope you enjoy it.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
Generalneed licence for DirtyPanel.dll??? Urgent Pin
t111111
22:46 7 May '09  
GeneralRe: need licence for DirtyPanel.dll??? Urgent Pin
Cassio Mosqueira
3:47 8 May '09  
GeneralCross Broswer Pin
Navneet Anuth
2:41 22 Apr '09  
QuestionAJAX 1.0 (w/o anthem) Pin
dB.
20:38 6 Aug '07  
AnswerRe: AJAX 1.0 (w/o anthem) Pin
Cassio Alves
21:41 6 Aug '07  
GeneralRe: AJAX 1.0 (w/o anthem) Pin
dB.
17:41 10 Aug '07  
Generalasp:FormView - Not Working Pin
Qasim Javed
3:30 18 Jul '07  
GeneralRe: asp:FormView - Not Working Pin
Cassio Alves
21:44 6 Aug '07  
GeneralTooltip Image Data Pin
ngovanphuc
0:54 13 Jul '07  
Generalit does not work when you have item template in grid view [modified] Pin
tahhan
20:44 11 May '07  
GeneralRe: it does not work when you have item template in grid view Pin
Cassio Alves
5:55 12 May '07  
GeneralPerfect timing Pin
Bryan Avery
0:05 9 May '07  
GeneralVery cool Pin
Michael J. Collins
9:09 8 May '07  
GeneralRe: Very cool Pin
Cassio Alves
11:42 8 May '07  
GeneralRe: Very cool Pin
zhulei_20
16:32 9 May '07  
GeneralDoesn't work in Opera 9.20 Pin
richzilla
8:48 8 May '07  
GeneralRe: Doesn't work in Opera 9.20 Pin
Cassio Alves
11:52 8 May '07  
Generalhow to use control on on tab page Pin
just_kideng
19:58 7 May '07  
GeneralRe: how to use control on on tab page Pin
Cassio Alves
5:01 8 May '07  
GeneralRe: how to use control on on tab page Pin
just_kideng
22:27 8 May '07  
GeneralNice work! Pin
Tim Brats
9:15 6 May '07  
GeneralCode project is not source repository Pin
Maruf Maniruzzaman
17:35 30 Apr '07  
GeneralRe: Code project is not source repository Pin
Cassio Alves
18:49 30 Apr '07  
GeneralRe: Code project is not source repository Pin
Maruf Maniruzzaman
19:26 30 Apr '07  


Last Updated 30 Apr 2007 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009