从web启动winform程序_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 从web启动winform程序

从web启动winform程序

 2014/11/15 15:06:44  疯吻IT  程序员俱乐部  我要评论(0)
  • 摘要:最近有个客户提出想从网站上启动一个客户端的程序,研究了下,实现方法如下:1.注入注册表//createregistrykeyforweblaunchstringappPath="\""+Application.ExecutablePath+"\"\"%1\"";stringsubKey=Application.ProductName+"\\shell\\open\\command"
  • 标签:程序 for Web 启动 winform

最近有个客户提出想从网站上启动一个客户端的程序,研究了下,实现方法如下:

1. 注入注册表

monospace; margin: 0em; width: 100%; background-color: #fbfbfb">//create registry key for web launch
string appPath = "\"" + Application.ExecutablePath + "\" \"%1\"";
string subKey = Application.ProductName + "\\shell\\open\\command";
var newKey = Registry.ClassesRoot.CreateSubKey(subKey);
newKey.SetValue(null, appPath);

 

注入后效果如下图:

image

%1是传入的参数

 

2. 网站上加一个link

<a href="HelloWorld://123">Hello World</a>

这里123是传入的参数

 

image

当我们点击这个link时,就会自动打开这个客户端软件。

上一篇: 跌跌撞撞的三年 下一篇: CLR
发表评论
用户名: 匿名