Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a 5MB MemoryStream generated on server and it needed serving to users as an excel File.

I used Response.close to make it downloadable. But for sure, it will abort all requests / response on the page.

I known using a download page may help the thread, but how do I pass the MemoryStream to the download page? Normally it should pass a file URL to that page.

Any ideas?

More comments: 1. First, I want stream the file to client. To make it download property, which can be used instead of Response.close(). 2. Second, during the client download, I want to show an processing bar(JUST AN IMAGE). The Response.close will stop the JavaScript function to hidden the bar.

So how to achieve the both requires? Thanks

Thanks anyway. The difficulty is that after Response.End or CompleteRequest the Http header has been sent. I'll not be able to access anything in the frond end. I should really use a separate page that handles process logic as well as is used to download file.

share|improve this question

3 Answers

up vote 0 down vote accepted

Your question is a little unclear. You ask how to end the response without ending the response. Do you mean you want to rest of the code to run after the response is flushed to the client? Or are you having a problem with the actual response not being right?

Using Response.Close() could be problematic as it basically resets the HTTP connection to the client. See This MSDN Blog Post and MSDN Response.Close() Reference.

If you can describe the problem you are having with more detail I can update my answer.

share|improve this answer
Use CompleteRequest instead of close/End caused my download file contained unwanted httpheader text. Don't know why. – Dan An Dec 13 '11 at 10:42
If you have header information in the response it's because whatever you're doing is starting to render a page before you start adding the Excel file to the response. Use Response.ClearHeaders() to clear header information if it truly is headers, if you are talking about just the top of the HTML page use Response.Clear(). If you want further help I would highly suggest posting some relevant code. – pseudocoder Dec 13 '11 at 14:47

Look at Response.Flush();

Also, see this: http://blogs.msdn.com/b/aspnetue/archive/2010/05/25/response-end-response-close-and-how-customer-feedback-helps-us-improve-msdn-documentation.aspx

share|improve this answer
Use CompleteRequest instead of close/End caused my download file contained unwanted httpheader text. Don't know why. – Dan An Dec 13 '11 at 10:41

Should the logic of generating your excel file be on it own separate page or handler?


In order to achieve your second objective, it would require a session-based object (holding the size of file generated) that can get updated periodically and asynchronously during the generation of your downloading file. And the object then can be read by the AJAX request that is need to be periodically sent from the page that holds progress bar, then you can grab that to update the progress bar in the frond end.

Just an idea, not sure if it works. If you google AJAX progress bar you can find couple of examples. Hope it helps

share|improve this answer
well it is a handler. – Dan An Jul 29 '11 at 14:46
Thanks anyway. The difficulty is that after Response.End or CompleteRequest the Http header has been sent. I'll not be able to access anything in the frond end. I should really use a separate page that handles process logic as well as is used to download file. – Dan An Aug 3 '11 at 11:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.