I have some javascript functions for getting/saving cookies. What I want to do is save all the values in the Input controls on the form to a cookie, and restore those values back into the form controls when the form is reloaded at some point in the future.
I was going to put the javascript function calls into the form's onLoad() and onUnload() events, but apparently the "Form" tag doesn't support those events. I put them in the "Body" tag, but the onLoad() fails because the form portion hasn't loaded yet when the body onLoad() event fires.
Any suggestions?
Thanks...