2

If System.Diagnostics.Process.Start("IEXPLORE.EXE", url); opens a new browser session, how do you open a new browser window in an existing version of internet explorer?

Thanks

rik
  • 1,279
  • 4
  • 20
  • 29

2 Answers2

2

Try Process.start(url) it will open up a new Tab if browser is already running, otherwise it will open default browser and shows the Page.

Anuraj
  • 18,859
  • 7
  • 53
  • 79
0

Check this out

Activate existing browser window with given URL from C# application (without triggering reload)

Hope that helps

Community
  • 1
  • 1
RaM
  • 1,126
  • 10
  • 25