Answer Posted / Nimish Singh
The MVC page life cycle can be broken down into several stages: 1) Request comes in (URL or click event). 2) Routing determines which controller and action to invoke. 3) The controller fetches data from the model, if necessary, and passes it to the view. 4) The view generates HTML based on the model data and any additional views (partial views). 5) Response is sent back to the user.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers