Tagged Questions
0
votes
1answer
25 views
Upload multiple files to webserver using GzipStream [closed]
I know how to upload single file to web server but my requirement is to upload multiple files to web server.
I want to compress all the files and then want to upload the zip file to webserver.Now I ...
0
votes
1answer
192 views
Gzip is messing AjaxControlToolKit
There is a form which contain a tabcontainer and watermark control from ajaxcontroltoolkit. It's
Giving java error: Sys.Extended is undefined when using the following gzip procedure. The following ...
5
votes
1answer
867 views
IIS Compression with in code GZipping?
I am adding in gzipping to all my static content, and html outputs from my .net 4 site.
I also have compression enabled in IIS 7.5 (both static and dynamic), and what I am finding is that enabling ...
0
votes
2answers
217 views
GZipStream to gzip string
i´m using GZipStream to gzip string.
Can someone tell me if it is possible to control the level of compression? This is because I realize it is possible to create gzip streams more compressed than ...
1
vote
2answers
795 views
“Invalid use of response filter” when compressing response from an IHttpHandler
I have an IHttpHandler returning a file. When the response stream is compressed, either automatically using Telerik RadCompression or by explicitly setting a filter using
context.Response.Filter = ...
4
votes
2answers
1k views
GZipStream is cutting off last part of XML
I have created an extension method called AddGZip which looks like the following:
public static void AddGZip(this HttpResponse response)
{
response.Filter = new GZipStream(response.Filter, ...
2
votes
1answer
671 views
I'm attempting to force gzip compression on a page using GZipStream but the browser says I'm using unsupported compression
I'm tring to implement what Steve Souders discusses http://www.stevesouders.com/blog/2010/07/12/velocity-forcing-gzip-compression/ about forcing gzip compression
I've got a module that's running ...
