| 网站首页 | 硬件维修 | 应用学院 | 网络组建 | 网站制作 | 菜鸟黑客 | 编程之道 | 数码大全 | 娱乐休闲 | 软件下载 | 在线视频 | 请您留言 | 技术论坛 | 
专 题 栏 目
最 新 热 门
最 新 推 荐
相 关 文 章
  • javascript模拟游戏中的…

  • javascript制作闪烁的边…

  • javascript制作浮动的工…

  • javascript设计漫天雪花

  • javascript设计网页中的…

  • 用javascript实现利用FL…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • Q
    您现在的位置: 我是IT人 >> 网站制作 >> ASP >> 文章正文
    用ASP在客户端注册DLL文件         
    用ASP在客户端注册DLL文件
    作者:网络 文章来源:转载 点击数: 更新时间:2005-9-30
    [ 字体:缩小 正常 放大 | 双击自动滚屏 ]
    请选择合适的字体颜色:


    ClientRegDLL.html本 程 式 方 法 介 绍 利 用 客 户 端 注 册 DLL 文 件。 下 一 回 讲 解 客 户 端 如 何 获 得 DLL 文 件。<html><head id="head1"><meta content="text/html charset=gb2312" http-equiv="Content-Type"><title id="title">Client use asp to register the exist dll file</title></head><body bgColor="skyblue" topMargin=0 leftMargin="0" rightMargin="0" bottomMargin="0"><div align="center"><table><tr><td>Client use asp to register the exist dll file</td></tr></table></div><input type="button" value="Register dll" name="reg_dll" language="vbscript" onclick="fun_reg()"> </body></html><script language="vbscript">' we had produce the WebReport.dll file and place in the client 'win <98 \windows\system\WebReport.dll'win 98 \windows\system32\WebReport.dll'win nt40 \winnt\system\WebReport.dll 'win 2000 \winnt\system32\WebReport.dll sub fun_reg() Dim WshShell,fsoSet WshShell = CreateObject("Wscript.Shell")Set fso = CreateObject("Scripting.FileSystemObject")If fso.FileExists("\windows\system\WebReport.dll") Then WshShell.run "regsvr32 /s \windows\system\WebReport.dll" , 1, truemsgbox "Register \windows\system\WebReport.dll file sucess!" elseIf fso.FileExists("\windows\system32\WebReport.dll") Then WshShell.run "regsvr32 /s \windows\system32\WebReport.dll" , 1, truemsgbox "Register \windows\system32\WebReport.dll file sucess!" elseIf fso.FileExists("\winnt\system\WebReport.dll") Then WshShell.run "regsvr32 /s \winnt\system\WebReport.dll" , 1, truemsgbox "Register \winnt\system\WebReport.dll file sucess!" elseIf fso.FileExists("d:\winnt\system32\WebReport.dll") Then WshShell.run "regsvr32 /s d:\winnt\system32\WebReport.dll" , 1, truemsgbox "Register d:\winnt\system32\WebReport.dll file sucess!" elsemsgbox "Not found the register dll file!" end if set fso=nothingset WshShell=nothingend sub </script>

    [1]

    文章录入:小秦    责任编辑:小秦 
  • 上一篇文章:

  • 下一篇文章:
  • 发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
    网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    | 设为首页 | 加入收藏 | 联系站长 | 关于我们 | 友情链接 | 版权申明 |