User475983607 posted
Hello All, I wanna Redirect an url after downloading a file Response.End() !! Could someone Help!! Pleasee
Not possible as there is one response stream. When the response stream is ended that's it.
Use JavaScript to download the file using an iFrame or open/close a new window then redirect using window.location = theNewUrl in JavaScript.
Another idea is to redirect first, then download.