Launching New Browser

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have tried almost every suggestion in these posts and my asp/vb .net
application still cannot launch a new browser window. Using WinXP task
manager, the best I can see is the start of a iexplore process but again, no
new window is poping up. It has got to be something simple, right?!!?

Any tips would be greatly appreciated; feel free to direct email too.
 
UofM Programmer said:
I have tried almost every suggestion in these posts and my asp/vb .net
application still cannot launch a new browser window.

Just to clarify do you have a Winforms project in which you are trying to
launch an IE browser window or do you have a webforms app in which you are
trying to open a new window?

Note for the latter just use javascript etc window.open as you normally
would. Process.Start isn't going to do anything on the client in an ASP.NET
app because process.start will run on the server. If you need more
sophisticated embedding of javascript you might to check out
RegisterClientScriptBlock etc methods of the Page class.

Richard
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top