%
'==========================================================================================
'Company:Kwindsoft
'Product:K-YellowPage Engine Version 3.0
'Homepage:http://www.kwindsoft.com/
'Copyright(c) 2006 kwindsoft.com All Rights Reserved
'==========================================================================================
dim rs
dim id
id=Request.QueryString("id")
if isnumeric(id)=0 or id="" then
conn.close
set conn=Nothing
response.write "非法ID参数"
response.end
end if
set rs=server.createobject("adodb.recordset")
rs.open "select * from company where id="&id,conn,1,1
if rs.eof and rs.bof then
rs.close
set rs=nothing
conn.close
set conn=nothing
response.write ""
response.end
else
%>