Hi, I have an application where when I hit a button NEXT, it will pupup a window and at the same time it goes to a different page.
I have the following code and the problem is it only goes to Step2.aspx, and no window popup. However, if I delete the code Response.Redirect("Step2.aspx"), then the popup windows work. How can I have 2 at the same time so that both the popup window pop up and it goes to the next page?
string url="http://www.test.com/abc.aspx";
Response.Write("<script language=\"javascript\">window.open('" + url+ "','SportZip',toolbar='0,scrollbars=-1,resizable=-1');void(0);</script>");
Response.Redirect("Step2.aspx");