第2个回答 2010-07-20
比如ASP的
在前台页面加<!--#include file="Conn.asp" -->
conn.asp的内容为“<%dim conn,rs,sqlstr,rs1,sql
'on error resume next
set conn=server.createobject("adodb.connection")
db="你数据库的路径"
conn.open "driver={microsoft access driver (*.mdb)};dbq=" & Server.mappath(db)
if err then
response.write"数据连接错误,请与管理员联系!"
response.end
end if%>
多看看教程吧