This topic is locked

Search On main list page

9/27/2005 08:00:34
ASPRunnerPro General questions
unique1 author

Ok i will try to see if i can explain this properly. On the list page there is the seach section at the top. There is the search field drop down box, then the option drop down box, and finally the text input box. I want to get rid of the search field and option drop down boxes. People will only be able to seach by a zip code so no need for all that stuff there. Thanks in advance for your help.

Sergey Kornilov admin 9/27/2005

To achieve this you need to open ..._list.asp in any text editor and remove dropdown boxes with field names and search options. Instead of that put two following lines:

<input type="hidden" ID="SearchField" NAME="SearchField" value="AnyField">

<input type="hidden" ID="SearchOption" NAME="SearchOption" value="Contains">


Replace AnyField with any other field name if you like to restrict search by any specific field.

unique1 author 9/29/2005

awesome thank you so much