Rexolio
Technical User
- Aug 29, 2001
- 230
I have 2 fields where a user puts in the data. On the next page I retrieve that data:
strInput = Request.form("Input"
strText = Request.form("Text"
I need to see if strText contains any part of strInput, but not sure how to do this. If I were connecting to a database, I'd simply put
SQL="Select * where Text LIKE '%Input%'"
but obviously that doesn't work in this case. What can I do?
strInput = Request.form("Input"
strText = Request.form("Text"
I need to see if strText contains any part of strInput, but not sure how to do this. If I were connecting to a database, I'd simply put
SQL="Select * where Text LIKE '%Input%'"
but obviously that doesn't work in this case. What can I do?