What is the best way to provide general data for my views?
For example, I want to be able to just put <% = Model.Title%> on my main page or something like that.
In this case, is it better to override the ViewPage classes that I need? Or just use a generic model object?
I'm currently trying to use a general approach to model objects — it works; just a lot of code and page views for editing ...
source
share