I have a webpage using PHP + apache.
And simple model like this:
How I run a app (write by C#) from my webpage?
I have a webpage using PHP + apache.
And simple model like this:
How I run a app (write by C#) from my webpage?
Solution 1:
As Per an Article 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>
Solution 2 :
As Per Microsoft Article, https://msdn.microsoft.com/library/aa767914(v=vs.85).aspx
You can Run a local application by Registering an Application to a URI Scheme.