欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp代码实现检测组件是否安装的函数

程序员文章站 2022-05-28 16:18:52
<% '****************************** '函数:isobjinstalled(strclassstring) '参数:strclasss...
<%
'******************************
'函数:isobjinstalled(strclassstring)
'参数:strclassstring,组件对象名
'作者:阿里西西
'日期:2007/7/13
'描述:检测组件是否安装
'示例:<%=isobjinstalled(strclassstring)%>
'******************************
function isobjinstalled(strclassstring)
    on error resume next
    isobjinstalled = false
    'err = 0
    dim xtestobj
    set xtestobj = server.createobject(strclassstring)
    if err<>-2147221005 then isobjinstalled = true else isobjinstalled = false end if
    set xtestobj = nothing
    'rr = 0
end function
%>