Hi,
I have installed and have working an asp.net installation on my webserver. Now, I want to make a small, simple search box, as described on this page, that can be viewed from the header on all of my pages.
However, i'm confused about what the code for the search box should be. The only example I can find is from this page:
The FAQ gives changes required if you are using asp. But I'm not sure how to change this code since i'm using asp.net and don't have a search.asp or search.aspx file to reference in the form.
Thanks,
Marc
I have installed and have working an asp.net installation on my webserver. Now, I want to make a small, simple search box, as described on this page, that can be viewed from the header on all of my pages.
However, i'm confused about what the code for the search box should be. The only example I can find is from this page:
Code:
<form method="get" action="search.php"> <input type="text" name="zoom_query" size="20" /> <input type="submit" value="Search" /> </form>
Thanks,
Marc
Comment