我有一个网页和一个桌面应用程序(C#)。在网页中的单击链接中打开c#应用程序。
我们需要将数据从网页发送到C#应用程序,C#代码应该接收它。
<script type="text/javascript" language="javascript">
<i> function RunFile() {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run("C:\hehe\ccslabsLogIn, 1, true");
}</i>
</script>
<input type="button" value="Run Notepad" onclick="RunFile();"/>
感谢您的帮助。
答案 0 :(得分:0)
WshShell.Run("C:\hehe\ccslabsLogIn <myString>, 1, true");
只需将<myString>
替换为您要传递的参数。
处理参数: How do I pass command-line arguments to a WinForms application?