VonFranzken
MIS
My SQL looks like this:
SELECT *
FROM dbo.table
WHERE name LIKE '%MMColParam%'
Variables:
Name: MMColParam
Default valuer: 1
Run-time value: Request.QueryString("txt_name")
Lets say there are 4 records in the table
1. Jack Black
2. Jack Black wins the gold
3. Jack Black Interview
4. Welcome Jack Black
Now my page is submitting a url paramter from a link assigned to a recordset.
If I search for Jack Black I get all the results.
But if I search for Welcome Jack Black, I only get the one and not the other valid Jack Black finds.
Thanks for your help on this.
Steve
SELECT *
FROM dbo.table
WHERE name LIKE '%MMColParam%'
Variables:
Name: MMColParam
Default valuer: 1
Run-time value: Request.QueryString("txt_name")
Lets say there are 4 records in the table
1. Jack Black
2. Jack Black wins the gold
3. Jack Black Interview
4. Welcome Jack Black
Now my page is submitting a url paramter from a link assigned to a recordset.
If I search for Jack Black I get all the results.
But if I search for Welcome Jack Black, I only get the one and not the other valid Jack Black finds.
Thanks for your help on this.
Steve