I want to open no. of urls and I want to open 1st url in new window and after that others in same window but in new tabs. I am using c# and its a window application I use a code provided by Firefox but it is not opening new tab. It opens new window. here is my code:
private void btnSearch_Click(object sender, EventArgs e) { Process.Start("http://google.co.in","2048"); Process.Start("http://google.co.in","2048"); } thanks in advance.