[Javascript] Automated Reload

Peter-Paul Koch gassinaumasis at hotmail.com
Sat Jun 9 10:43:43 CDT 2001



>Thanks. But, something has changed in my application design. I need to 
>reload the page automatically as well as submiting some informartion to the 
>database back end.
>
>So, what I really want is to be able to automatically submit every 30 
>minutes, for example. How do I do that?
>
>MY first thought was to put the argument / query string in the URL, but I 
>wonder if that's the only way, because I don't really want to necessarily 
>display all my query string.

Or a script that's called onLoad

function submitIt()
{
setTimeout('document.forms[0].submit()',1800000)
}

(time in milliseconds)

ppk

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.





More information about the Javascript mailing list