How to implement autorefresh?

2006-06-14 Thread Pankaj Gupta
I need to call a method from the action class that periodically refreshes my page in struts application automatically. Can someone please suggest how to do it? regards, Pankaj - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: How to implement autorefresh?

2006-06-14 Thread Cassio Pereira
You should use javascript to post your form from time to time using the function window.setInterval(function, milliseconds) that you can read about at http://www.w3.org/TR/Window/#timers. If ou don't want the flickering effect that it causes, you could also use Ajax with the timer. On 6/14/06,

Re: How to implement autorefresh?

2006-06-14 Thread David Durham
Cassio Pereira wrote: You should use javascript to post your form from time to time using the function window.setInterval(function, milliseconds) that you can read about at http://www.w3.org/TR/Window/#timers. If ou don't want the flickering effect that it causes, you could also use Ajax with