Is there a way of executing some piece of code before any controller action gets called?
I need to set a session variable based on the value of a get parameter, without taking into account which controller gets called.
Of course, once this processing is done, the request needs to follow its normal way to the corresponding controller/action.
Thanks