⟩ What are the 3 main components of an ASP.NET MVC application?
1. M - Model
2. V - View
3. C - Controller
1. M - Model
2. V - View
3. C - Controller
Tell me in other mvc systems, the rule is fat models, skinny controllers. ie the business logic goes in the models and all controllers do is load/save models and load/kill views. is this the extjs way?
Suppose that if i want to open a contacts view, i should call contactsController.view(id), or what have you, which would then open the view for me. correct?
How to use model validation rules with a form?
How to run an app in a page with existing content? (no viewport i am guessing, but what else do i need to know?)
What is best way to get a reference to the viewport from anywhere in the code?
What is Model View Controller (MVC)?
Where are the routing rules defined in an asp.net MVC application?
What is the role of a controller in an MVC application?
Name a few different return types of a controller action method?
Is it possible to unit test an MVC application without running the controllers in an ASP.NET process?