What steps will reproduce the problem?
1. Visit a website that will stream a binary file to user (example is
ASP.NET / c#)
Response.Clear();
Response.AppendHeader("Content-Disposition:", "attachment;
filename=\"TestFile.zip\"");
Response.AppendHeader("Content-Length", result.Data.Length.ToString());
Response.ContentType = "application/download";
Response.Buffer = false;
Response.BinaryWrite(data);
Response.Flush();
Response.End();
2. The FileDownloadExEventArgs.m_FileName member has the name of the aspx
page, rather than the name of the attachment / file being downloaded.
What are the OS and IE versions?
Vista / IE7
What version of the product are you using?
1.0.0.3
Please provide any additional information below.
Original issue reported on code.google.com by cp.erick...@gmail.com on 13 Feb 2008 at 12:24
Original issue reported on code.google.com by
cp.erick...@gmail.com
on 13 Feb 2008 at 12:24