views:

16

answers:

0

How can you hook on to an event that gets fired directly after the Routing / mapping is done? I want to perform some actions directly after the Routing is done and the mapped URL is available.

I tried PreRequestHandlerExecute, but that event is fired just before the Routing takes place. I can't find any other place. PostRequestHandlerExecute is possible, but that's after the whole request was processed. Or a page's PreInit event, but that's also not a good solution I think.