web buttons!

mzone

Member
Joined
May 18, 2006
Messages
5
Programming Experience
Beginner
pls help with sample code, how do you code the "REFRESH, STOP, BACK and FORWARD" buttons for a web page? Pls help asap!
 
Try these:
HTML:
<html>
<br /><a href="javascript:window.location.reload()">refresh page</a>
<br /><a href="#">stop</a>
<br /><a href="javascript:history.back()">back</a> 
<br /><a href="javascript:history.forward()">forward</a> 
</html>
Moved post to ASP forum.
 
web buttons

thanks but i need it for a windows application form, not web form, so i wont be using html script, any help with that?
 
Back
Top