我看到人們只是檢測到請求瀏覽器支持http壓縮或不。如果支持,然後檢測支持gzip或deflate。關於httpcompression asp.net
,然後只添加屬性來響應物體像
HttpContext.Current.Response.AppendHeader("Content-encoding", "gzip");
或
HttpContext.Current.Response.AppendHeader("Content-encoding", "deflate");
我只需要知道究竟是誰comresee的響應。它是Web服務器還是asp.net工作進程。請詳細討論是誰以及如何壓縮響應。謝謝
IIS壓縮比較好或者asp.net壓縮比較好。哪一個可以做更多的壓縮輸出。 –
請告訴我哪一個更好.... gzip或deflate? –
@ user750398 gZip是更好的和默認的,但你不決定,你要求瀏覽器選擇什麼喜歡使用acceptEncoding值 – Aristos