Using form buttons for hyperlinks
Home Up

 

[../../_private/disc1_ahdr.htm]

Using form buttons for hyperlinks

From: Wes
Date: 10/21/98
Time: 3:09:50 PM
Remote Name: 206.241.177.130

Comments

If you've ever wanted to use buttons on your HTML pages to take you to another page, then use this technique:

<FORM ACTION="http://www.microsoft.com" METHOD=GET>
  <INPUT TYPE=submit NAME=foo VALUE="Go to Microsoft">
</FORM>

This creates a form whose only purpose in life is to send you to another page. Instead of the usual method=post, we use method=get to fetch the desired page.

[../../_private/disc1_aftr.htm]