Hi,
this is pretty simple I think. How do I check to see if a form has been refreshed. I want to initialise some values every time a form is refreshed.
Thanks
Lenin.
Printable View
Hi,
this is pretty simple I think. How do I check to see if a form has been refreshed. I want to initialise some values every time a form is refreshed.
Thanks
Lenin.
I'm not sure if you can check for a form refresh but you might be able to use the 'onLoad' event in your BODY tag to do this (as it fires when a page is loaded/refreshed).
<BODY onLoad="YourInitializationRoutine()">
Good luck,
Paul