Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search Form

Status
Not open for further replies.

asafb

Programmer
Jun 17, 2003
80
US
Hi, I want to create a simple form for search.
You have a text box control and a button.
It should then go to the aspx page with my filtered results.

in other words, set the source..
any quick ways?
ab
 
asa: Should be easy enough, just execute an SQL onClick, using the string in the textbox --

I have one page up that utilizes a partial string for searching records (returning them in a listbox) -- you might want to use something like this:

Dim strSQL = "'%" & txtSearch.Text & "%'"

...in your SQL statement.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top