在共享托管环境中压缩来自asp.net服务器的json响应

时间:2012-04-17 08:16:48

标签: asp.net json iis web-config gzip

我的托管服务器是共享托管环境中的godaddy。 由于共享托管环境,我无法访问IIS设置。

出于多种目的,我发送json响应给ajax请求

我在web.config文件中设置了以下内容

<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
            <scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll"/>
            <dynamicTypes>
                <add mimeType="text/*" enabled="true"/>
                <add mimeType="message/*" enabled="true"/>
                <add mimeType="application/javascript" enabled="true"/>
        <add mimeType="application/json" enabled="true"/>
                <add mimeType="*/*" enabled="false"/>
            </dynamicTypes>
            <staticTypes>
                <add mimeType="text/*" enabled="true"/>
                <add mimeType="message/*" enabled="true"/>
                <add mimeType="application/javascript" enabled="true"/>
        <add mimeType="application/json" enabled="true"/>
                <add mimeType="*/*" enabled="false"/>
            </staticTypes>
        </httpCompression>

我可以让我的.aspx页面gziped但它不会压缩json响应。 我怎样才能压缩json响应.. ??

1 个答案:

答案 0 :(得分:0)

我认为答案是您需要自己的VPS服务器(如果您有预算)或您自己的专用服务器。然后,您可以修改IIS7的applicationHost.config