asp.net – 如何确定HttpModules的执行顺序?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何确定HttpModules的执行顺序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设FirstModule和SecondModule都处理Application_BeginRequest事件。它将按照web.config中定义的顺序执行吗?
<httpModules>
  <add type="MyApp.FirstModule,MyApp" name="FirstModule"/>
  <add type="MyApp.SecondModule,MyApp" name="SecondModule"/>
  <add type="OtherApp.OtherModule,OtherApp" name="OtherModule"/>
</httpModules>

有没有其他方法可以指定订单?@H_404_5@

解决方法

根据 this forum post,HttpModules按照它们被注册的顺序执行。这对我有意义,因为否则的话< clear>和< remove>指令也不会按预期工作,例如。当使用这样:
<httpModules> 
   <clear/>
   <add... />
</httpModules>
原文链接:https://www.f2er.com/aspnet/254294.html

猜你在找的asp.Net相关文章