I have an sql query used to search for projects that match a users input string. The query works when I take it out of the code and try it in Access, but it wont work when trying to run it from my page. Anybody know why it would do this? Thanks. Here is the SQL:
strSQL = "Select * From Projects Where
ProjTitle Like '*"&Request.QueryString("ProjectTitle"
&"*'
AND ProjDescription Like '*"&Request.QueryString
("Description"
&"*' AND ProjStatus = '"&Request.QueryString
("status"
&"'"
strSQL = "Select * From Projects Where
ProjTitle Like '*"&Request.QueryString("ProjectTitle"
AND ProjDescription Like '*"&Request.QueryString
("Description"
("status"