eh già ho fatto un response.write della SQL ma stampa solo

select * from products where id = 121

allora sbaglio nel passare le variabili o a recuperle? AIUTO!!!


codice:
<% 
id=request.querystring("id") 
tip_UK=request("tip_UK")
modulation=request("modulation")
Set objConn = Server.CreateObject("ADODB.Connection") 
objConn.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & server.MapPath("/fpdb/wire_products.mdb")

strSQL=("select * from products where id='" & id &"' AND tip_UK='"& tip_UK &"' AND modulation='"& modulation &"'")

set rs=server.CreateObject("ADODB.recordset")
rs.Open strSQL, objConn
if not rs.EOF then
%>
<% if tip_UK="receiver" then
Response.write"[img]/wireless/images/top_receivers.jpg[/img]"
else
Response.write""
end if
if tip_UK="transmitter" then
Response.write"[img]/wireless/images/top_hybrids.jpg[/img]"
else
Response.write""
end if
if tip_UK="key-fob" then
Response.write"[img]/wireless/images/top_keyfobs.jpg[/img]"
else
Response.write""
end if
if tip_UK="transceiver" then
Response.write"[img]/wireless/images/top_transceivers.jpg[/img]"
else
Response.write""
end if
%>