检查组件是否已经安装
作者:cmscn 日期:2009-08-12
<%
'函数名:IsObjInstalled
'作 用:检查组件是否已经安装
'参 数:strClassString ----组件名
'返回值:True ----已经安装
' False ----没有安装
function IsObjInstalled(strClassString)
on error resume next
IsObjInstalled = False
err = 0
dim xTestObj
set xTestObj = Server.createobject(strClassString)
if 0 = err then IsObjInstalled = True
set xTestObj = nothing
err = 0
end function
%>
评论: 0 | 引用: 0 | 查看次数: 428
发表评论