Wednesday, August 3, 2016

What is MVC?

MVC is architecture pattern. It’s divided in main 3 sections:
  1. Model
  2. View
  3. Controller

      Model: The Model represents a set of classes that describe the business logic and provides the data to view.
View:  View is responsible for look and feel. It is only responsible for displaying the data that is received from the controller as the result.
Controller: controller is responsible for take the user request and process the user's data with the help of Model and passing the results back to the View.

No comments:

Post a Comment

Hash Table in C#

 The Hashtable is a non-generic collection and used to store the key/value pairs based on the hash code of the key. Key will be used to acce...