Home All Groups Group Topic Archive Search About

how can i refresh my aspx webform

Author
6 Jan 2006 2:19 PM
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

Author
7 Jan 2006 10:19 AM
Joerg Jooss
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,
--
Joerg Jooss
news-re***@joergjooss.de
Are all your drivers up to date? click for free checkup

Author
27 Jan 2006 3:51 PM
NATE
thanks

Bookmark and Share