How do I create an executable "reload page" behavior.

R

Ronx

Just create a link to the same page, with a query after the extension

<a href="pagename.htm?">refresh page</a>
The text link can be replaced by a button image.

The above link will refresh the page from the server, even through
AOL's cache.
 
G

Gigabyte

If you really want a button:


<form><INPUT TYPE="button" VALUE="enter button text here between the ""
marks" onClick='parent.location="javascript:location.reload()"'></form>
 
Top