hardwarebuddy
01-23-2007, 04:41 PM
Hey
I'm a newbie to the art of coding but I want to code a form box into a search box type thing. The closest I've found to the link box I want is this:
<form action="#">
Type in a URL, and hit the Go! button to go there!
<br />
<input name="the_url" type="text" value="http://" size="25" />
<input type="button" value="Go!" onClick="window.location=this.form.the_url.value" />
</form>
What I want my search bar/link bar is that when you type in say "joe" i want it to go to page ../joe.htm (I'm using microsoft frontpage btw). Is there anyway I can code that somehow? Any help would be great. Thank you in advance :)!
I'm a newbie to the art of coding but I want to code a form box into a search box type thing. The closest I've found to the link box I want is this:
<form action="#">
Type in a URL, and hit the Go! button to go there!
<br />
<input name="the_url" type="text" value="http://" size="25" />
<input type="button" value="Go!" onClick="window.location=this.form.the_url.value" />
</form>
What I want my search bar/link bar is that when you type in say "joe" i want it to go to page ../joe.htm (I'm using microsoft frontpage btw). Is there anyway I can code that somehow? Any help would be great. Thank you in advance :)!