I have a web app with Forms auth. The users will open a form and start entering information, then stop for awhile. When they return and finish up the form and try to save, they have passed the authentication timeout, so the app routes them through the login page. The login page successfully routes them back to the form page. This all works as expected.
The problem comes when we get back to the form page. It doesn't seem to know that the save button was clicked on the form. The button's event handling code never runs and the form reloads as though the user were just starting. Which means they lost all their edits.
Is there anything I can do to make this right? I've gone through code to make sure there isn't anything that would be getting in the way. What I want to have happen is that when the user hits Save and gets sent to the login page, they log in again, then the save actually happens.&nbs ...
Go to the complete details ...