W
webbertsolutions
I have an ASP.NET page that does
Response.AppendHeader(HeaderName, HeaderValue);
Response.ContentType = MimeType;
Response.BufferOutput = false;
Response.WriteFile(file);
Response.Flush();
The problem is that I would like to update/refresh the current page
after / during this download occurs.
Tried this
Response.Redirect(Request.Url.AbsoluteUri, true);
and rebinding the datagrid but neither worked.
Any thoughts on how to do this.
Thanks,
Dave
Response.AppendHeader(HeaderName, HeaderValue);
Response.ContentType = MimeType;
Response.BufferOutput = false;
Response.WriteFile(file);
Response.Flush();
The problem is that I would like to update/refresh the current page
after / during this download occurs.
Tried this
Response.Redirect(Request.Url.AbsoluteUri, true);
and rebinding the datagrid but neither worked.
Any thoughts on how to do this.
Thanks,
Dave