yulei's blog

有梦想更有要有行动,每天前进一小步,那么每年可以迈出一大步 QQ:65072096 MSN:coolsoft2001@sina.com

导航

HttpCompress相关问题解决方法

HttpCompress相关问题解决方法

                                      

自从用了HttpCompress后,网页打开速度明显快了很多,但在javascript的应用(包括Validation控件)、FreeTextBox 控件的使用中还是出现了error。下面就针对这两种error,给出解决方法。

在web.config中

        <httpCompress preferredAlgorithm="gzip" compressionLevel="high">
            <excludedMimeTypes>
                <add type="image/jpeg"/>
                <add type="image/gif"/>
                <add type="text/x-component" /> <!-- 解决 FreeTextBox 出错的问题-->
            </excludedMimeTypes>
            <excludedPaths>
                <add path="NoCompress.aspx"/>
                <add path="ebResource.axd"/> <!-- 解决 javascript 出错的问题-->
            </excludedPaths>
        </httpCompress>

希望对大家有帮助

posted on 2009-05-19 22:32  yulei  阅读(513)  评论(0编辑  收藏  举报