Can I simply set the Transfer-Encoding
header?
Will calling Response.Flush()
at some point cause this to occur implicitly?
EDIT No, I Cannot call Response.Headers.Add("Transfer-Encoding","anything");
That throws.
any other input?
Can I simply set the Transfer-Encoding
header?
Will calling Response.Flush()
at some point cause this to occur implicitly?
EDIT No, I Cannot call Response.Headers.Add("Transfer-Encoding","anything");
That throws.
any other input?
It looks like you need to setup IIS for this. IIS 6 has a property AspEnableChunkedEncoding in the metabase and you can see the IIS 7 mappings for this on MSDN at http://msdn.microsoft.com/en-us/library/aa965021(VS.90).aspx. This will enable you to set TRANSFER-ENCODING: chunked in your header. I hope this helps.