Textbox input to a web page
Textbox input to a web page
(OP)
Is it possible to have a web page with a textbox that a user could type into and have a particular web page appear? Using cities as an example, I'd want the user to be able to type Chicago and when the Submit button is clicked, it would open chicago.htm. Likewise, Cleveland or Cincinnati would open cleveland.htm or cincinnati.htm.
Deon
Deon
RE: Textbox input to a web page
You could launch it as a separate window with one click of the button but I don't know whether that is what you want.
RE: Textbox input to a web page
You'll need to have an onclick method on the submit button to modify the target before calling submit on the form.
RE: Textbox input to a web page