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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Filter Records on 4 Fields

Status
Not open for further replies.

mswilson16

Programmer
Nov 20, 2001
243
US
Hi All,

I am using ASP and reading a SQL database. I have a dynamic table that lists all the records found from rsClientInfo, what I need to do is, when all the clients have been found be able to put a filter on the results.

e.g. be able to put in *wil* in a field as criteria to filter the records to only show clients that have wil in there name.

thanks

mswilson
 
you can do something like this:

RS.Filter = "name Like '%wil%' OR..."

-DNG
 
thanks dotnetgnat how would apply this filter? do I use javascript/asp? Can I put the code on a command button?
 
I dont really have anything, I have just created a dynamic table by going Insert, Application Object, Dynamic Table... then create a ODBC connection connClient, then a recordset rsClient where deleted = false... other than that, dont have anything else.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top