% id=request.QueryString("proid") if id="" or not isnumeric(id) then Response.Write "" Response.End() end if set rs_news=server.createobject("adodb.recordset") exec="select * from products where id="& id rs_news.open exec,conn,1,1 if rs_news.eof then response.Redirect("products.html") response.End() end if %>