我目前正在尝试查看是否可以ServiceController
在我的经典 ASP 页面中使用,以便该页面可以将自定义命令发送到我的 Windows 服务。我在网上阅读的所有文章和问题都是关于使用 ASP.NET 或其他应用程序/组件的(但遗憾的是,我仅限于使用 Classic ASP)。我的两次尝试都失败了,因为我收到了这个错误:
Microsoft VBScript compilation error '800a0401' Expected end of statement
ServiceController
这是我尝试在我的asp页面上使用的两次尝试:
尝试 #1 预期的语句结尾指向 '('
Dim myService
Set myService = New ServiceController("MyNewService")
myService.ExecuteCommand(0)
myService.ExecuteCommand(1)
myService.ExecuteCommand(2)
尝试 #2 预期的语句结尾指向“As”
Dim myService As New ServiceController("MyNewService")
myService.ExecuteCommand(0)
myService.ExecuteCommand(1)
myService.ExecuteCommand(2)
那么,是否可以在 Classic ASP 中使用 ServiceController?请解释它如何可能或为什么不可能。