<!--#include file="todata.asp"-->
<%
const strMdb="../dewgwbw/tztic-network.mdb"
function check_onedata(design1)
dim objRs,strSql,objCon
'design=design1
call OpenDb(objCon,strMdb)
strSql="select * from " & design1
set objRs=objCon.execute(strSql)
if objRs.eof and objRs.bof then
check_onedata="true"
else
check_onedata="false"
end if
call CloseRs(objRs)
call CloseDb(objCon)
end function
dim i
i=check_onedata(web_info)
response.Write(i)
%>