Autorefresh on a ASP page

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi I'm trying to implement a 30second auto-refresh of an ASP page, I've
tried using the meta tag but if I do that my checkboxes don't remain
persistent, they do remain persistent if I programmatically cause a
postback.

Any better way of doing auto-refresh?
Paul
 
You could include a client-side JavaScript that uses the setInterval()
method and when the interval is reached call the submit method of the form.
 
Back
Top