<%
ID = CheckStr(Trim(Request("ID")))
If ID = "" Or Not Isnumeric(ID) Then
Call Msg("参数错误!","javascript:window.close();")
Response.end
End If
Set Rs = Conn.Execute("Select * from tbl_Info Where ID=" & ID)
If Rs.Eof Then
Call Msg("您要查看的信息不存在或者已经删除!","javascript:window.close();")
Response.end
End If
%>