本文最后更新于 954 天前,其中的信息可能已经有所发展或是发生改变。
瀏覽器調試模式控制台中,提示腳本加載失敗,或者ext控件未定義
在web.config里增加
<system.webServer>
<modules>
<add name=“DirectRequestModule“ preCondition=“managedHandler“ type=“Ext.Net.DirectRequestModule,Ext.Net“ />
</modules>
<handlers>
<add name=“DirectRequestHandler“ verb=“*“ path=“*/ext.axd“ preCondition=“integratedMode“ type=“Ext.Net.ResourceHandler“/>
</handlers>
</system.webServer>
IIS7.0以前的版本
<system.web>
<httpModules>
<add name=“DirectRequestModule” type=“Ext.Net.DirectRequestModule,Ext.Net“/>
</httpModules>
<httpHandlers>
<add verb=“*” path=“*/ext.axd“
type=“Ext.Net.ResourceHandler“ validate=”false”/>
</httpHandlers>
</system.web>