50分悬赏求网站数据库的问题啊?是无忧网站的程序

来源:百度知道 编辑:UC知道 时间:2024/05/17 08:42:10
我的网站是www.sousou9.cn我把源码上传到空间就出现了这个问题啊,请问要怎么解决啊,怎么修改路径啊,谢谢数据库链接出错,请检查数据库路径是否正确(Inc/Conn.asp)!

'd:\hosting\haiyi123\inc\db\#db5A33.Mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.

你路径不能填绝对路径,要填相对路径。给你个例子:
<%
dim conn
dim connstr
dim db
db="data/database.mdb" '数据库文件的位置
Set conn = Server.CreateObject("ADODB.Connection")
connstr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath(db)
conn.Open connstr

sub CloseConn()
conn.close
set conn=nothing
end sub
%>

是连接的路径错了,你应该用相对路径,比如你的数据库是放在data 这个文件夹下,那么你的路径应该这样:data/xxx.mdb