longzu / csexwb2

Automatically exported from code.google.com/p/csexwb2
0 stars 0 forks source link

Some file downloads are not handled correctly #29

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
This issue was resolved in version 1.0.0.7:
http://code.google.com/p/csexwb2/downloads/list

MH

Original comment by mehr...@gmail.com on 13 Feb 2008 at 11:26