Tagged Questions
6
votes
1answer
467 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
0answers
570 views
IIS7 - Specifying content-length header in ASP causes “connection reset” error
I'm migrating a series of websites from an existing IIS5 server to a brand new IIS7 web server. One of the pages pulls a data file from a blob in the database and serves it to the end user:
...
1
vote
2answers
955 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";
...
0
votes
1answer
318 views
IIS 7 Dynamic Compression: would that make Content-Length header unpredictable?
Using .NET 4.0 on IIS 7.5 on Windows 2008 R2.
I would like to output a binary content which represents various types of documents (images, PDF, Office files, etc). Let's assume the entire content is ...