本文介绍了Web.Config中的HttpModule节的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的Web.config的一部分:

This is a part of my Web.config:

<httpModules>
      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        <remove name="FormsAuthentication" />
      <add name="FileSessionHttpModule" type="myHttpModule,FileSessionHttpModule"  />
    </httpModules>


当我同时添加ScriptModule和FileSessionHttpModule标记时,脚本不起作用.

如果我删除FileSessionHttpModule,则脚本可以工作.
我做错什么了吗?

谢谢


When i add both ScriptModule and FileSessionHttpModule tags, script do not work.

If I remove FileSessionHttpModule then the script works.
Am I doing anything wrong?

Thanks

推荐答案


这篇关于Web.Config中的HttpModule节的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 09:18