what are your top lessons learned when starting asp.net mvc that you would highlight to someone starting out so they can avoid these mistakes?
feedback
|
| ||||
|
feedback
|
|
Try to always use a ViewModel to pass data between the Controller and the View. You may think you don't need one, you can just pass your model around, but suddenly you need a list box with several options for editing a model, or displaying a message (not validation message) and you start adding items to the ViewData, with magic strings as keys, making the app harder to maintain. There are also some security issues that you solve with a ViewModel. For instance:
Your view let's the user change his name and email and posts to the action
Someone could tamper your form and post a new password and username and you will need to be very careful with the DefaultBinder behavior. Now, if you use a ViewModel like:
The problem is gone. | |||||||
feedback
|
| |||
|
feedback
|
| |||
|
feedback
|
| |||
|
feedback
|
|
Put javascript in seperate files, not into the view page | |||
feedback
|
|
Don't use the Forms collection, use model binding. Try not to use ViewData, create a ViewModel. If you have a loop or an if in your View, write an HTML helper. Kindness, Dan | |||
|
feedback
|
|
Don't let your controller become a fat one and do too much work. I've seen 1000+ line controllers in the past and it just becomes an absolute nightmare to understand what's going. Utilise unit testing for your controllers to ensure that dependencies are kept under control and that your code is testable. Don't get drawn into letting jQuery and fancy clientscript define the behaviour of your application, try and use it as sparingly as you can and let it enhance your application instead. Use partial views and HTML helpers whenever possible to ensure that your Views do not become unwieldy and a maintenance nightmare. Use a ViewModel whenever possible. Use a dependency injection framework to handle your dependencies (MvcContrib has several controller factories, though it's simple enough to roll your own). | |||
|
feedback
|
|
Use a different controller for every section of your site (e.g., Home, Account) Learn how to use ViewData and TempData Learn what's the use of RenderPartial | |||
|
feedback
|