I am creating an Excel file with Response.write in my C# file and it takes 1-2 mins to create the file. I would like to make use of UpdateProgress to indicate that the file generation is in progress. But when I use UpdateProgress, the file is not getting generated.

Please let me know if I am missing anything here.

link|improve this question
I have check the same thing, getting error when Response.write().. I am also worry why I am getting this error. – Muhammad Akhtar Jul 27 '09 at 12:42
feedback

2 Answers

I think this comes from misunderstanding the Response Object and/or the basic HTTP request structure.

Your Request: GET /buildXLS.aspx

Server 1 Response: /* header info for file download */ /* file data */

Server 2 Response: /* hearder info for HTML page */ <div>Updating...</div> /* file data */

if you try to act like server 1, you can't send any data back on the response but the file itself (and appropriate headers). if you try to act like server 2, the page you're downloading will be treated as HTML and you'll never see the file data, as headers have been written indicating an "text/html" transfer instead of XLS. in fact, once you've flushed the response for any reason, you can't write to it anymore.

i can see a situation where your scenario could work, but only as two interacting pages - page 1 shows the progress message then opens a new window, page 2. page 2 starts the XLS build and then triggers page 1 to hide the progress message when it's complete. now you've got two pages to match the two sets of headers you're trying to send, rather than trying to send both HTML updates and start file downloads within the same response.

link|improve this answer
thanks for your detailed explanation, i used a custom defined progress bar. – RajMohan Jul 29 '09 at 12:54
feedback

See UpdateProgress Control Overview:

The UpdateProgress control provides status information about partial-page updates in UpdatePanel controls.

Are you in a partial page update in an UpdatePanel?

link|improve this answer
Yes it is a partial page update. When the process is in progress, i can see the updateprogress spinning but once the at Response.Write() it is stopped and no file is getting generated. – RajMohan Jul 16 '09 at 11:59
Is there an exception? Check the event log. – John Saunders Jul 16 '09 at 12:18
Sorry John, there is no excpetion. Response.Write() is in server side code. – RajMohan Jul 16 '09 at 12:26
I meant on the server side. Check for exceptions in the server-side event log at the same time you try your test. – John Saunders Jul 16 '09 at 12:47
John, I can see the excpetion "System.PlatformNotSupportedException" inside the response object. But i can see this exception even without the updatepanel in the page and system able to generate the excel file when i remove the updatepanel from the webpage. – RajMohan Jul 16 '09 at 14:44
show 4 more comments
feedback

Your Answer

 
or
required, but never shown