Hi,

I'm writing an ASP.net app using C# and i'm writing a simple code where i click a button I want the browser to open.

Here's the code:

Code:
				
          
Process test = Process.Start("C:\\DRIVERS\\AUD\\L400\\setup.exe");
Unfortunately, when I click on the button in the webpage, the browser seems to be thinking, i get a progress bar at the bottom of the browser, but the progress bar stops in the middle.

Can someone please help me? I know that running .exe manually works because i've tried it so it can't be the .exe that's causing the problem...

Thanks

Rico