wait page while excel is generated in ASP.net - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T02:26:07Zhttp://stackoverflow.com/feeds/question/512135http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/512135/wait-page-while-excel-is-generated-in-asp-net1wait page while excel is generated in ASP.netrsapru2009-02-04T16:30:28Z2009-02-04T17:03:57Z
<p>I have a requirement, wherein i need to show a wait message while an excel report is being executed and when execution is complete, excel is written to response for user to save. Once save is done i need to hide the wait message.</p>
<p>I was able to show wait message but i am not able to hide the same when the execution is complete. I have used Ifames to achieve the same.
i do all the processing required for excel in the iframe and write to the response in the same Iframe. i attempted to hide the wait message using Javascript but any JavaScript function written in onload,onunload, onbeforeunload etc of Iframe is not being executed.</p>
<p>Is there any way i can call a JavaScript function , Or is there any other approach to the problem.</p>
http://stackoverflow.com/questions/512135/wait-page-while-excel-is-generated-in-asp-net/512171#5121712Answer by Scott for wait page while excel is generated in ASP.netScott2009-02-04T16:40:55Z2009-02-04T16:40:55Z<p>I did something like this a few years ago. I opened a new thread to do the background processing, then redirected to a "waiting" page. The wait page checks the status of the task and if completed, redirects back. That's a real easy solution. Check it out <a href="http://www.simple-talk.com/dotnet/asp.net/implementing-waiting-pages-in-asp.net/" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/512135/wait-page-while-excel-is-generated-in-asp-net/512193#5121931Answer by Daniel Schaffer for wait page while excel is generated in ASP.netDaniel Schaffer2009-02-04T16:47:31Z2009-02-04T17:03:57Z<p>Here's how I'd do this:</p>
<ul>
<li>Create an HttpHandler that generates the document, saves it (in cache/on disk/database, your call) and returns an identifier for the generated document</li>
<li>Call the HttpHandler using an AJAX call (use <a href="http://jquery.com" rel="nofollow">jQuery</a> to make this really easy)</li>
<li>Use javascript/jQuery to display a waiting message/graphic/animation/whatever</li>
<li>In the AJAX request callback, redirect to a page that takes the generated identifier and sends the corresponding document as an attachment using the <a href="http://support.microsoft.com/kb/260519" rel="nofollow">Content-Disposition</a> header.</li>
</ul>
<p>As a side note, this would be a little more straightforward in ASP.NET MVC</p>
<p><strong>GenerateDocument HttpHandler stub:</strong></p>
<pre><code>public class GenerateMyDocumentHandler : IHttpHandler
{
#region [ IHttpHandler Members ]
public Boolean IsReusable
{
get { return true; }
}
public void ProcessRequest(HttpContext context)
{
var docIdentifier = this.GenerateDocument();
context.Response.ContentType = "text/plain";
context.Response.Write(docIdentifier.ToString("N"));
}
#endregion
private Guid GenerateDocument()
{
var identifier = Guid.NewGuid();
// Logic that generates your document and saves it using the identifier
return identifier;
}
}
</code></pre>
<p><strong>Client Script stub:</strong> </p>
<pre><code>function generateDocument() {
var result = $.get('/GenerateDocument.ashx', { any: 'parameters', you: 'need', go: 'here' }, generateDocumentCallback, 'text');
// display your waiting graphic here
}
function generateDocumentCallback(result) {
window.location.href = '/RetrieveDocument.ashx/' + result;
}
</code></pre>
<p><strong>RetrieveDocument HttpHandler stub:</strong></p>
<pre><code>public class RetrieveDocument : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
var identifier = new Guid(context.Request.Url.Segments[1]);
var fileContent = this.GetFileAsBytes(identifier);
context.Response.ContentType = "application/vnd.ms-excel";
context.Response.AddHeader("Content-Disposition", "attachment; filename=yourfilename.xls");
context.Response.OutputStream.Write(fileContent, 0, fileContent.Length);
}
private Byte[] GetFileAsBytes(Guid identifier)
{
Byte[] fileBytes;
// retrieve the specified file from disk/memory/database/etc
return fileBytes;
}
public Boolean IsReusable
{
get
{
return true;
}
}
}
</code></pre>