I have an web page and a desktop app(C#). On a click in link in Web pages opens the c# application.
We need to send data from Web page to C# application, C# code should receive it.
<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();"/>
Thanks for Help.