Yep, so if your url read...
filename.asp?firstvar=1&secondvar=2
...you could build this into your SQL using the
Request.QueryString command, eg.
SQL = "SELECT * FROM yourTable WHERE Field1='" &
Request.QueryString("firstvar") & "' AND Field2='" &
Request.QueryString("secondvar") & "'"
If you're using the Dreamweaver recordset builder, you'd
enter a suitable name for the criteria value in the SQL window and
then create the variables in the variable window with the values as
Request.QueryString("firstvar") etc.