VBscript变量是未定义的错误

时间:2014-01-27 16:40:18

标签: vbscript

这是我的vbscript - 对此并不太了解。我从Microsoft文档中提取的两行不起作用。该文件保存为vbs文件。我双击然后运行。 Windows XP是操作系统。

option explicit

Dim Rs1
Set Rs1 = Server.CreateObject( "ADODB.Recordset" )

我收到运行时错误,说错误:变量未定义:'Server'。有点困惑,因为代码是基本的。

任何想法?感谢...

1 个答案:

答案 0 :(得分:7)

Server.CreateObject用于 ASP页面,用于“桌面”VBScript使用:

option explicit

Dim Rs1
Set Rs1 = CreateObject( "ADODB.Recordset" )