| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 825 人关注过本帖
标题:请问怎样在网页中调用本地的exe程序
只看楼主 加入收藏
canwen
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2005-8-25
收藏
 问题点数:0 回复次数:7 
请问怎样在网页中调用本地的exe程序
请问怎样在网页中调用本地的exe程序
搜索更多相关主题的帖子: 网页 exe 
2005-08-25 15:33
canwen
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2005-8-25
收藏
得分:0 
有人会吗?
有人会吗?
2005-08-25 16:05
hxfly
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:5810
专家分:118
注 册:2005-4-7
收藏
得分:0 
不会

2005-08-25 16:08
hxfly
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:5810
专家分:118
注 册:2005-4-7
收藏
得分:0 
你搜一个ASP制作的反弹型木马
那里应该有相应的信息

2005-08-25 16:09
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
要用脚本检测你计算机中的Exe装在哪儿 并读取 然后才能执行

我只是设想 我不会
2005-08-25 16:19
canwen
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2005-8-25
收藏
得分:0 
谁会啊
2005-08-25 16:21
griefforyou
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:3336
专家分:0
注 册:2004-4-15
收藏
得分:0 
不要试图这么做。。。

天津网站建设 http://www./
2005-08-25 17:14
toolag
Rank: 1
等 级:新手上路
帖 子:152
专家分:0
注 册:2005-7-30
收藏
得分:0 

执行服务器端 应用程序可以使用WSH 方法: Run http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsmthrun.asp

Exec http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wslrfexecmethod.asp The following VBScript code opens a copy of the currently running script with Notepad.

Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.Run "%windir%\notepad " & WScript.ScriptFullName

The following VBScript code does the same thing, except it specifies the window type, waits for Notepad to be shut down by the user, and saves the error code returned from Notepad when it is shut down.

Set WshShell = WScript.CreateObject("WScript.Shell") Return = WshShell.Run("notepad " & WScript.ScriptFullName, 1, true)

The following VBScript code opens a command window, changes to the path to C:\ , and executes the DIR command.

Dim oShell Set oShell = WScript.CreateObject ("WSCript.shell") oShell.run "cmd /K CD C:\ & Dir" Set oShell = Nothing 至于客户端, 似乎不大妥当


VB, Delphi, ASP, PHP, JSP, .NET MS SQL, My SQL, Oracle Diablo, StarCraft, WarCraft, World of Warcraft
2005-08-25 18:37
快速回复:请问怎样在网页中调用本地的exe程序
数据加载中...
 
   



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

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