|
You can't force a download and redirect at the same time - both or these actions terminate the current request.
If you want the user to redirect to another page then chrishirst is correct, use Response.Redirect. The redirect page could then use Javascript (backed up by a standard link) to begin downloading the file.
|