9
ASP.NET'te GZip sıkıştırması nasıl uygulanır?
Asp.net sayfam için (CSS ve JS dosyalarım dahil) GZip sıkıştırmasını uygulamaya çalışıyorum. Aşağıdaki kodu denedim, ancak yalnızca .aspx sayfamı sıkıştırıyor ( YSlow'dan buldum ) HttpContext context = HttpContext.Current; context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress); HttpContext.Current.Response.AppendHeader("Content-encoding", "gzip"); HttpContext.Current.Response.Cache.VaryByHeaders["Accept-encoding"] = true; Yukarıdaki kod, harici dosyalar olarak dahil edilen CSS ve JS dosyalarını değil, …
81
c#
asp.net
compression
gzip