Tomix
|
| Posted: 07/01/2002, 4:45 AM |
|
How to reload page from code, not with F5 or any other way. To refresh data from database automatic, kind of ...
|
|
|
 |
Chris K.
|
| Posted: 07/01/2002, 6:49 AM |
|
You can only specify time interval page will be reloaded by putting META in page temaplate's HEAD section:
<META HTTP-EQUIV="REFRESH" CONTENT="<seconds>; URL=<pageaddress>">
Put <pageaddress> to reload after <seconds> seconds. If you give the same page URL it will be reloading until navigating outside.
|
|
|
 |
Nicole
|
| Posted: 07/01/2002, 6:54 AM |
|
Tomix,
add META tag to html code:
<META HTTP-EQUIV="REFRESH" CONTENT="<number_of_seconds>; URL=<your_url>">
So the page will be refreshed after <number_of_seconds> seconds.
|
|
|
 |
|