I have the following code
Response.TransmitFile(filePath);
Opens the new window using the following line of code
this.Page.ClientScript.RegisterStartupScript(this.GetType(), "Download", string.Format("window.open('{0}', target = 'new');", downloadURL), true);
This works on IE8 however doesn't work on IE6 and IE7
anyidea what might be wrong here?