Button / Another URL

P

Paul Curtis

How do I go about inserting a button that will take the
visitor to another URL?
 
R

Richard Weerts

to be safe across browsers, here's one way ...:

<form action=http://the other url method="GET">
<input type = "submit" value="click here to go to the other URL">
</form>
 
K

Kevin Spencer

<input type="button" name="B1" value="Click Here"
onclick="document.location='http://www.microsoft.com';">

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Top