Apr 7, 2004 #1 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
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
Apr 7, 2004 #2 Isadore Technical User Feb 3, 2002 2,167 US 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. Upvote 0 Downvote
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.