I have an IIS7 server, which people download exe files from.
When people are using Internet explorer the download dialog box says that the size is unknown.
What setting in IIS will allow the clients to know the size of the file?
I have an IIS7 server, which people download exe files from.
When people are using Internet explorer the download dialog box says that the size is unknown.
What setting in IIS will allow the clients to know the size of the file?
IIS 7 has chunked encoding enabled by default - and according to RFC 2616 you cannot use the
Content-Length
header (which is used to let the client know how big the content being sent is) with chunked encoding.I think you need to disable chunked encoding under ASP settings in IIS.