The web.config file for this project is missing the required DirectRequestModule.

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>

posted @ 2014-03-06 19:20  山之子  阅读(920)  评论(0编辑  收藏  举报