gpt4 book ai didi

asp-classic - 经典 ASP 测试服务器是否可以创建对象

转载 作者:行者123 更新时间:2023-12-02 04:38:58 26 4
gpt4 key购买 nike

使用这段代码:

Dim xmlDOM
Set xmlDOM = Server.CreateObject("MSXML2.DOMDocument.3.0")

如何测试 CreateObject 函数是否成功?

最佳答案

如果它不起作用,您可能会收到错误消息。否则,您可以使用以下代码:

Dim xmlDOM
'dont fail on error'
On Error Resume Next
Set xmlDOM = Server.CreateObject("MSXML2.DOMDocument.3.0")
On Error GoTo 0 'turn error handling off again'

If Not xmlDOM Is Nothing Then
'not null: it worked'
Else
'xmlDOM is nothing. It was not able to create the object. '
'Check create permissions in COM+'
End If

关于asp-classic - 经典 ASP 测试服务器是否可以创建对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21312737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com