Currently, when the using is logged in (using the built in forms authentication) and they let their session timeout, they loose all data when they submit a form. How do I make it so that the viewstate data is resubmitted AFTER logging back in? Example, if they were writing an email and it expires, how do I make it send after they relogin instead of loosing all their data? I don’t want a solution that extends the session on these pages please.
Currently, when the using is logged in (using the built in forms authentication) and
Share
viewstatewill only work in postback-scenarios,you will lose it if you redirect.So i think you usesessionfor your problem.