In an MVC application there are three main components Model View Controller Model contains the application data and the business rules for our application.View is the representation of the Model to the end user ,usually through some GUI such as HTML.Controller is the component which handles the user’s request ,selects the Model and returns the view. Once […]