ASP.NET使用Coolite.Ext.Web.dll,顯示ext 未定義 的解決方法

encienqi發表於2011-05-26

開發系統時用到Coolite.Ext.Web.dll,起初使用XP進行的開發,測試都沒有問題。後來裝了Windows7,再進行開發此時是,總顯示ext 未定義。

解決方法:

web.config中關於Coolite.Ext.Web.dll配置,還需要補充system.webServer節中的相關配置。

 

FOR IIS 6.0 and earlier  

 

Add the following to <httpModules> section under <system.web> section in web.config:

<add name="AjaxRequestModule" type="Coolite.Ext.Web.AjaxRequestModule, Coolite.Ext.Web" />

Add the following to <httpHandlers> section under <system.web> section in web.config:

<add path="*/coolite.axd" verb="*" type="Coolite.Ext.Web.ResourceManager" validate="false" />

FOR IIS 7.0, add the following to <system.webServer>

<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
    <modules>
        <add name="AjaxRequestModule" preCondition="managedHandler" type="Coolite.Ext.Web.AjaxRequestModule, Coolite.Ext.Web" />
    </modules>
    <handlers>
        <add name="AjaxRequestHandler" verb="*" path="*/coolite.axd" preCondition="integratedMode" type="Coolite.Ext.Web.ResourceManager"/>
    </handlers>
</system.webServer>

相關文章