I'm using Html.RenderAction, in ASP.NET MVC (futures), to display modules on different pages. I want the modules to be aware of which page they belong to (for settings and logging purposes).
Is there a way to get the Controller/Action - stack, on the current controller?
I found on the Controller base something called DescriptorCache under ActionInvoker and that has something called Cache wich has that info, however I do not have access to that in the Controller because it's defined as private.
Appreciate your help :m