What is MVC 3 in ASP.NET

4 replies
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..
#aspnet #mvc
  • Profile picture of the author Earnie Boyd
    Take a look at Model and then MVC : Official Microsoft Site for your convenience.
    Signature
    {{ DiscussionBoard.errors[6119489].message }}
  • Profile picture of the author Mighty
    Thanks a lot for this information.
    {{ DiscussionBoard.errors[6120376].message }}
  • Profile picture of the author phpdeveloperindia
    Banned
    [DELETED]
    {{ DiscussionBoard.errors[6125032].message }}
    • Profile picture of the author Brad Hodge
      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.
      {{ DiscussionBoard.errors[6140881].message }}
  • 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.
    {{ DiscussionBoard.errors[6141880].message }}

Trending Topics