Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Button

Status
Not open for further replies.

youngun

Programmer
Apr 27, 2001
61
US
Can somebody tell me the code of having a button functions as a link. I mean, when I click on a button, it will bring me to another page. And no javascript, please.

Thank you in advance.
 
Submit buttons direct the user to the action of the
Code:
form
they reside in.
Example:
Code:
<form method=&quot;POST&quot; action=&quot;takemehere.asp&quot;>
<input type=&quot;submit&quot;>
</form>
Also, get used to using javascript because otherwise you are not going to be able to make a very interesting web application. I keep javascript to a minimum in my pages but there is no way of keeping it out entirely and still creating a good product. Wushutwist
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top