how can i refresh my aspx webform

  • Thread starter Thread starter NATE
  • Start date Start date
N

NATE

Could you tell me how I can refresh a aspx webform without press a
button.
I need to refresh a text box periodically without the action of the user
 
Hello Nate,
Could you tell me how I can refresh a aspx webform without press a
button.
I need to refresh a text box periodically without the action of the
user

Either send a HTTP Refresh header (non-standard, though widely supported)
or add a META-Tag to your page:

<meta http-equiv="refresh" content="5; url=http://www.asp.net/">

The value of "content" specifies the number of seconds after which the conten
at "url" is loaded.

Cheers,
 
Back
Top