The web.config file for this project is missing the required DirectRequestModule.
将应用程序集的模式由集成改为经典即可.
或者如下操作
<system.webServer>
<validation
validateIntegratedModeConfiguration="false"/>
<modules>
<remove
name="ScriptModule"/>
<add
name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net"
/>
</modules>
</system.webServer>
The web.config file for this project is missing the required DirectRequestModule.,布布扣,bubuko.com
The web.config file for this project is missing the required DirectRequestModule.
原文:http://www.cnblogs.com/ahghy/p/3585144.html