这是我的vbscript - 对此并不太了解。我从Microsoft文档中提取的两行不起作用。该文件保存为vbs文件。我双击然后运行。 Windows XP是操作系统。
option explicit
Dim Rs1
Set Rs1 = Server.CreateObject( "ADODB.Recordset" )
我收到运行时错误,说错误:变量未定义:'Server'。有点困惑,因为代码是基本的。
任何想法?感谢...
答案 0 :(得分:7)
Server.CreateObject
用于 ASP页面,用于“桌面”VBScript使用:
option explicit
Dim Rs1
Set Rs1 = CreateObject( "ADODB.Recordset" )