What is MVC 3 in ASP.NET

by 4 replies
5
Hello every one i am a new programmer I want to know that what is MVC model view controller in asp and for which purpose it is used..
#programming #aspnet #mvc
  • Take a look at Model and then MVC : Official Microsoft Site for your convenience.
  • Thanks a lot for this information.
  • Banned
    [DELETED]
    • [ 1 ] Thanks
    • [1] reply
    • In extremely simple language, MVC is an architecture design which consists of three things - Model, View and Controller. The controller sits in the middle and receives requests and dispatches them. The view is the external view presented to the user. The model is the real beast where all your application logic resides.

      There are MVC1, MVC2 and MVC3 levels in practice. Choosing one depends on the size and use of your software.
  • MVC is a simple architecture where all components are separated into three classes:
    1. Model - Classes that contain data that will be shown to the user.
    2. View - Components that will display the model to the user.
    3. Controller - Components that will handle any interaction with the user.
    In the web framework, the user will enter some URL to the ASP.NET MVC application, and the controller, model, and view will handle this request and return the HTML back to the user.

Next Topics on Trending Feed