<!-- #include file="conn/conn.asp" -->
<%
dim str
str="admin"
On Error Resume Next '打开错误处理功能
set rs=server.createobject("adodb.recordset")
sql="select * from "& str
rs.open sql,conn,1,1
if err.number<>0 then
response.write"表不存在!"
On Error GoTo 0 '关闭错误处理功能
else
response.write"表存在!"
'输出表中的内容
On Error GoTo 0 '关闭错误处理功能
end if
%>