farshad Posted January 13, 2004 Posted January 13, 2004 Hi, Why is it that when running the code below, the new instance of explorer does not open and yet there is no error. P.S. the code is in Asp.net Thanks Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click System.Diagnostics.Process.Start("IExplore.exe") End Sub Quote Farshad
Administrators PlausiblyDamp Posted January 13, 2004 Administrators Posted January 13, 2004 (edited) It will create a new instance of IE on the ASP.Net server running under the ASPNET account which will not be visible to the user. What are you trying to do - there may be an alternate way. Edited March 28, 2007 by PlausiblyDamp Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
samsmithnz Posted January 13, 2004 Posted January 13, 2004 It sounds like you should look at opening a new window via client script. The window.open() method will allow you to open a new window (with any URL you specify) and keep the existing page open. Quote Thanks Sam http://www.samsmith.co.nz
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.