Question: I'm fiddling with sessions in asp.net in a http module.
The problem:
session("whatever") = "something"
is set on page_load
I need an event in the http-module which is executed after page_load, and in which I have access to the session in System.Web.HttpContext.Current.Session
I was looking at this HTTPModule Event Execution Order? but I can only get the session in PostAcquireRequestState, which obviously comes before page_load...