rik
rik

Reputation: 1299

Starting internet explorer in open tab

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

Upvotes: 2

Views: 2703

Answers (2)

Anuraj
Anuraj

Reputation: 19598

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.

Upvotes: 2

Related Questions