D
Dave Lagergren
I have a query string:
objRS.Open "Select * from Results WHERE Key =33", objConn, 0, 1
I need to change the 33 to the variable SearchText defined as follows:
Dim SearchText
SearchText = (Request("Key"))
This variable is passed from another .asp program. If I use:
Response.Write(SearchText)
It displays correctly.
I am using an access DB with FP2003.
objRS.Open "Select * from Results WHERE Key =33", objConn, 0, 1
I need to change the 33 to the variable SearchText defined as follows:
Dim SearchText
SearchText = (Request("Key"))
This variable is passed from another .asp program. If I use:
Response.Write(SearchText)
It displays correctly.
I am using an access DB with FP2003.