What's the best way to provide shared data to my views?
For example, I want to be able to just put <%= Model.Title %> in my master page, or something similar.
In that scenario, is it better to override the ViewPage classes I need? Or just use a shared model object?
I'm currently trying to do the shared model object approach -- it works; just a lot of code and view pages to edit...