<httpModules></httpModules>的使用 yangan

使用格式如下:
<httpModules>
   
<add type="classname,assemblyname" />
   
<remove/>
   
<clear/>
</httpModules>
我项目中简单的实例:
<system.web>
      
<httpModules>
            <add name="NHSession" type="Ldc.NHibernateSessionHelper.SessionManager, NHibernateSessionHelper" />
      
</httpModules>
</system.web>
原文地址:https://www.cnblogs.com/xlx0210/p/1545502.html