Posts

Showing posts with the label MVC Application

MVC Application Development at XcelTec - XcelTec

Image
  MVC is probably the most commonly selected model for application development technology in ASP.NET Model View Controller (MVC) is a framework for building web applications using architectural design. MVC is the web framework for user interfaces The platform provides us with a lot of helpers, which accelerate the formation of the code. It separates an application into three main layers: Models, Views, and Controllers. M  stands for model. V  stands for view. C  stands for controller. Model Responsibilities Model represents the part of the application that handles the logic for application data and any business logic or operations that should be performed by it. Mainly the Model object retrieves and stores data in a database or form. View Responsibilities Views are responsible for presenting content through the user interface. Views use the Razor syntax to convert .NET code into HTML markup. There should be minimal logic within views, and any logic in them should rel...