通过使用WScript.Shell 组件可以打开任何的应用程序
eg using (dynamic shell = AutomationFactory.CreateObject("WScript.Shell"))
{
shell.Run(@"C:\windows\notepad.exe"); //you can open anything
shell.SendKeys(txtTextToSend.Text);
}
除此之外还可以在js中调用
<javascript language="javascipt">{
var shell = new ActiveXObject("WScript.shell");
shell.Run(@"C:\windows\notepad.exe");
}
可以参考文章http://www.cnblogs.com/subway-2008/archive/2010/08/15/1799949.html