asp ?
asp ?
Out of context: Reply #3
- Started
- Last post
- 13 Responses
- tfs__mag0
yeah what gabriel said... strSQL = "SELECT * FROM reports WHERE title = " & Request.Form("title")
although i usually do it slightly different
"SELECT * FROM reports WHERE title='" & request.form("title") & "'"
either way will work, i just do it that way so i can use it with numeric fields too.