9
Làm thế nào để thực hiện nén GZip trong ASP.NET?
Tôi đang cố gắng triển khai nén GZip cho trang asp.net của mình (bao gồm các tệp CSS và JS của tôi). Tôi đã thử mã sau, nhưng nó chỉ nén trang .aspx của tôi (tìm thấy nó từ YSlow ) HttpContext context = HttpContext.Current; context.Response.Filter = new GZipStream(context.Response.Filter, CompressionMode.Compress); …
81
c#
asp.net
compression
gzip