I am a newbie, trying to build an ASP Web application in VS.NET, with
code-behind in C#. When a user clicks on a radio button, I want to
pop up another Web page showing a picture. The code looks like:
using System.Diagnostics
Process.Start
("IExplore.exe", "http://localhost/allNetRes/photos/rowboat.jpg");
The project files are in c:/inetpub/wwwroot/allNetRes/*.aspx, and the
photos are in c:/inetpub/wwwroot/allNetRes/photos/*.jpg.
It doesn't crash, it just doesn't do anything. I can step through
the code with the debugger, and it takes the correct path, including
the Process.Start() line, but the new Web page never appears. When I
click on the above URL (in the VS IDE) it finds the *.jpg file and
displays it in the VS edit window.