vote up 2 vote down star
1

Does anyone know a clean way of adding events to Session's OnStart and OnEnd events using an HttpModule (without touching the Global.asax file)?

flag

69% accept rate

1 Answer

vote up 1 vote down check
public void Init(HttpApplication app)
{
   var ssm = app.Modules["Session"] as SessionStateModule;
   ssm.Start += Foo;
   ssm.End += Bar;
}
link|flag
Google brings up this solution in the comments of this blog: codebetter.com/blogs/karlseguin/… but the author describes it as "something of a nightmare". Why would that be? Just a little concerned that this could cause issues. – cbp Feb 12 at 0:26
Just found this answer and also wonder whether this is the right things to do, after somebosy has indicated it's "something of a nightmare"? – Mark Redman Aug 16 at 18:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.