Questions tagged «httpmodule»


5
我可以从HTTPModule访问会话状态吗?
我真的可以从我的HTTPModule中更新用户的会话变量,但是据我所知,这是不可能的。 更新:我的代码当前正在OnBeginRequest ()事件处理程序中运行。 更新:到目前为止收到的建议,我尝试将其添加到Init ()我的HTTPModule例程中: AddHandler context.PreRequestHandlerExecute, AddressOf OnPreRequestHandlerExecute 但是在我的OnPreRequestHandlerExecute例行程序中,会话状态仍然不可用! 谢谢,如果我错过了一些东西,我们深表歉意!

5
IHttpHandler和IHttpModule
我的问题很简单(尽管答案很可能不是):我正在尝试决定如何在C#/ ASP.NET中实现服务器端上传处理程序。 我同时使用了HttpModules(IHttpModule接口)和HttpHandlers(IHttpHandler接口),但我发现我可以使用任何一种机制来实现它。我还想到我不了解两者之间的区别。 所以我的问题是: 在什么情况下我会选择使用IHttpHandler而不是IHttpModule(反之亦然)? 在流水线中被执行得更高吗?在某些情况下配置起来容易得多吗?中等安全性不能很好地发挥作用吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.