标题:asp模板中出现错误 缺少对象: 'xcryptDll'
取消只看楼主
renxiaoyi
Rank: 2
等 级:论坛游民
帖 子:59
专家分:16
注 册:2010-8-23
结帖率:33.33%
已结贴  问题点数:20 回复次数:1 
asp模板中出现错误 缺少对象: 'xcryptDll'
Microsoft VBScript 运行时错误 错误 '800a01a8'

缺少对象: 'xcryptDll'

F:\网站模板\WWW\ADMIN\../include/inc_connxml.asp,行 63
''对象初始化
    private sub class_initialize()
        on error resume next
        set xmldom=Server.CreateObject(MsxmlVersion)
        if int(err.number)> 0 then
            response.write err.description
            err.clear
            response.end
        end if
        set xcryptDll=Server.CreateObject("Cuttle.CCrypt")
        if int(err.number)> 0 then
            response.write err.description
            err.clear
            response.end
        end if
    end sub


''开始加载XML文件
    public sub load_xmltxt(filepath)
        if isnull(xmldom)=false then    ''新增的判断
            dim isok_loadxml,xmldoc_txt
''            xmldoc_txt=get_file(filepath)    ''适用于XML文件为gb2312格式的读取
            xmldoc_txt=get_formatfile(filepath,-1)    ''重新编码xml文件内容(Unicode)
''            xmldoc_txt=stream_getfile(filepath,1)    ''适用于XML文件为gb2312格式的读取
            xmldoc_txt=xcryptDll.Decrypt(xmldoc_txt) 63行
            
            xmldom.async=false    ''必需属性定义
            isok_loadxml=xmldom.loadXML(xmldoc_txt)
            if isok_loadxml=false then
                Response.Write "初始化的XML数据不存在!"
                Response.End
                exit sub
            end if
            xmldom.PreserveWhitespace=false
            set xml_root=xmldom.documentElement
        end if
    end sub


   
搜索更多相关主题的帖子: include private Microsoft next 网站模板 
2012-10-15 09:59
renxiaoyi
Rank: 2
等 级:论坛游民
帖 子:59
专家分:16
注 册:2010-8-23
得分:0 
回复 2楼 yms123
那怎么安装呢?
2012-10-16 08:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-383213-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.271302 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved