如何从WebPage运行Windows应用程序?

时间:2017-07-07 05:34:42

标签: c# php apache

我有一个使用PHP + apache的网页。

这样的简单模型:

我如何从我的网页运行应用程序(用C#编写)?

谢谢。 enter image description here

1 个答案:

答案 0 :(得分:0)

解决方案1:

根据文章Here

<script type="text/javascript" language="javascript">
    function RunFile() {
    WshShell = new ActiveXObject("WScript.Shell");
    WshShell.Run("c:/windows/system32/notepad.exe", 1, false);
    }
</script>
<a onclick='RunFile();'>NotePad</a>

解决方案2:

根据微软的文章, https://msdn.microsoft.com/library/aa767914(v=vs.85).aspx

您可以通过将应用程序注册到URI方案来运行本地应用程序。