I am just starting with MVC, moving from web forms.
Lets take for example:
I have a page that shows a list of contacts with properties such as first name, last name, company, phone, email address, etc....
On that page, a user role determines if they can see particular columns. So an admin could see the phone and name while a basic user could only see company, address and a few others.
Would you toss that logic into a view or have the controller do the logic and use another view?
Seems to me that making the controller would be the best but the views could get repititve.
Thanks for the help, trying to wrap my ahead around it.
(Any good book recomendation are welcome, trying to read a few.)