dim conn
dim connstr
on error resume next
connstr="DBQ="+server.mappath("../db/database/data#base.mdb")+";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
set conn=server.createobject("ADODB.CONNECTION")
if err then
err.clear
else
conn.open connstr
if err then
err.clear
end if
end if
%>
原来在WEB下,用上面的设置代码后,网站功能还是能正常运行,但是后台进不去了?