此项目的web.config文件缺少必需的DirectRequestModule

时间:2013-02-16 13:08:52

标签: asp.net extjs web-config ext.net

将ResourceManager和Window组件放在Web应用程序上我正在调试asp.net app但是 它显示警告信息!

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

Example

<system.web>
  <httpModules>
    <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net" />
  </httpModules>
</system.web>
More information available at "Getting Started". 

如何修复此类错误?

2 个答案:

答案 0 :(得分:2)

README.txt包含Web.config样本,请参阅

http://examples.ext.net/#/Getting_Started/Introduction/README/

同样,通过NuGet安装Ext.NET将自动设置正确的Web.config节点。

install-package ext.net

希望这有帮助

答案 1 :(得分:0)

有点奇怪,我修这个的方式..

之前我使用Server.Transfer(..)重定向页面 然后我开始面临同样的问题

然后我搜索了很多,最后我将Server.Transfer(..)更改为Response.Redirect(..),并且ta-da工作得很好..

希望这可以帮助你: - )