Task: run application from ASP.NET

for example,
you have a button on ASP.NET page, when press this button - one application is invoked.


the code to run application (for example, notepad) is (on C#)

System.Diagnost ics.Process.Sta rt("notepad");

but the problem is that the application doesn't run, i.e. no window is opened.

Note that ASP.NET code is executed...