HTTP Automatic Refresh

  • Thread starter Thread starter Fabiano
  • Start date Start date
F

Fabiano

Please,

I need refresh automatically my asp.net page into an interval of 30 seconds.
But i need that this refresh fires a postback event so i could manage it.

Any idea?

tks in adv.

Fabiano
 
You could do it with some JavaScript to force a document.form.submit
however if you just need to differentiate between an initial load and a
programmatic reload you might want to consider setting a meta refresh
tag with a redirection to the same page but with a QueryString
attribute of your choosing. Then you could check for the QueryString
attribute in the PageLoad event.

Sorry if this doesn't help.

Sincerely,
James Fujino
 
Back
Top