又有题了
以下是我编写的一段代码:
<%
If IsEmpty(Session("Passed")) Then
Session("Passed") = False
End If
If Session("Passed")=False Then
name = Request.Form("name")
password = Request.Form("password")
If name = "" Then
Errmsg = "请输入用户名和密码"
Else
'定义Recordset对象
Set rs=Server.CreateObject("ADODB.Recordset")
Set rs.ActiveConnection = dbConn
提示错误如下:
Microsoft VBScript 运行时错误 错误 '800a01a8'
缺少对象: 'ActiveConnection'
/login.asp,行 76
请问各位谁知道错在那里了?