Tagged Questions
6
votes
1answer
466 views
IIS 7.5 ASP.NET HttpModule - Setting Response.Filter results in chunked encoding
I'm trying to create a HttpModule that changes the Response.Filter like so
(for this demonstration just set the filter back to itself):
public class ContentTrafficMonitor : IHttpModule
{
public ...
1
vote
2answers
954 views
download of large files slow when content-length specified (IIS7)
I have an asp.net web page to serve large file downloads to users.
The page is hosted on IIS7, Windows Server 2008.
The strange thing is that users can download at good speeds (2MB/s) when I don't ...
1
vote
2answers
1k views
IIS7 downloading file length
I've following code for file download:
FileInfo fileInfo = new FileInfo(filePath);
context.Response.Clear();
context.Response.ContentType = "application/octet-stream";
...