關於webform_postbackoptions未定義的錯誤
<blowery.web>
<!--
Here's an example on how to change the algorithm or compression level
<compressionModule preferredAlgorithm="deflate|gzip" compressionLevel="high|normal|low"/>
so, to use deflate by default, and high compression, you would use the following line
-->
<httpCompress preferredAlgorithm="deflate" compressionLevel="high">
<excludedMimeTypes>
<add type="image/jpeg"/>
<add type="image/gif"/>
<add type="image/png"/>
<!-- 解決 FreeTextBox 出錯的問題-->
<add type="text/x-component"/>
<add type="text/plain"/> <!--解決Ajax回調不支援壓縮格式的問題-->
<add type="application/vnd.ms-excel"/>
<add type="application/octet-stream"/>
<add type="application/vnd.ms-word"/>
</excludedMimeTypes>
<excludedPaths>
<add path="Resource.axd"/>
<add path="ebResource.axd"/> <!-- 解決 javascript 出錯的問題 關於webform_postbackoptions未定義的錯誤-->
</excludedPaths>
</httpCompress>
</blowery.web>