文件名称:基于ASP网上考试系统
文件大小:2.06MB
文件格式:PDF
更新时间:2012-01-25 11:46:21
在线 考试
好基于ASP,ACCESS <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% dim student_name,student_no student_name=session("student_name") student_no=session("student_no") student_password=session("student_password") if session("student_name")=empty then response.write "
您还没有登录,请返回 登录
"
response.end
end if
' 建立Connection 对象
set conn= Server.CreateObject("adodb.connection")
'定义OLE DB连接字符串
'provider="provider=microsoft.jet.oledb.4.0;"
'dbpath="data source="&server.mappath("/webtest/data/webtest.mdb")
'打开连接
'conn.open provider & dbpath
cnnstr="DBQ=" + server.mappath("data/webtest.mdb") + ";DefaultDir=;DRIVER={Microsoft Access Driver (*.mdb)};"
'打开连接
'conn.open provider & dbpath
conn.open cnnstr