<%
if request("id")<>"" then
id = request("id")
else
Response.Write("")
end if
strsql="select * from pro_list where id="&id
set rs = Server.CreateObject("ADODB.Recordset")
rs.Open strsql, conn, 1, 1
if rs.recordcount=0 then
Response.Write("")
end if
%>
|
|
|