I want all my views to inherit from a baseview data so I can set some shared properties that all my views will need.
Can I set some properties in OnExecuting so I don't have to do it for all Actions?
I want to then display the string value of the property in all my view pages.
If yes, how can I do this? I need to hook into the base view data somehow?
so i'll have:
public MyViewData : ViewData { }
And I need one for generics also?