Is it possible to open a common Windows application (something like NotePad.exe of WordPad.exe) by clicking a button in an ASP.NET web form.
I know it's a simple thing via C# Windows programming, the syntax being :
System.Diagnostics.Process.Start(@"C:\Windows\Notepad.exe");
Is the same achievable in ASP.NET (C#) code ?
I can't seem to make it happen ...
Any thoughts ?
Thanks in advance
Steve
I know it's a simple thing via C# Windows programming, the syntax being :
System.Diagnostics.Process.Start(@"C:\Windows\Notepad.exe");
Is the same achievable in ASP.NET (C#) code ?
I can't seem to make it happen ...
Any thoughts ?
Thanks in advance
Steve