Re: VS wizards: No, you have to code it yourself. Wizards can't do everything.
You need to construct the SQL query manually and put the variable values where you want them:
someVariable = Request.QueryString("variableName")
strSql = "SELECT * FROM MyTable WHERE field=" & someVariable
'execute strSql
-
Peter