ConnSite.asp
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:0k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%
  2. Dim Conn,ConnStr
  3. On error resume next
  4. Set Conn=Server.CreateObject("Adodb.Connection")
  5. ConnStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath(SiteDataPath)
  6. Conn.open ConnStr
  7. if err then
  8.    err.clear
  9.    Set Conn = Nothing
  10.    Response.Write "系统错误:数据库连接出错/Include/Const.asp文件!登陆 web.dns-w.cn 寻求帮助!"
  11.    Response.End
  12. end if
  13. %>