---
title: "What is ASP.NET MVC?"  
description: "What is ASP.NET MVC?"  
author: "Chris Anderson"  
published: 2011-08-24  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/1165/what-is-asp-dot-net-mvc  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 2 minutes  

---

# What is ASP.NET MVC?

The ASP.NET MVC Framework is a web application framework that implements the model-view-controller pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller.\
A model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the application. A controller handles interactions and updates the model to reflect a change in state of the application and then passes information to the view. A view accepts necessary information from the controller and renders a user interface to display that information.

## Answers

### Answer by Chris Anderson

The ASP.NET MVC Framework is a web application framework that implements the model-view-controller pattern. Based on ASP.NET, it allows software developers to build a Web application as a composition of three roles: Model, View and Controller.\
A model represents the state of a particular aspect of the application. Frequently, a model maps to a database table with the entries in the table representing the state of the application. A controller handles interactions and updates the model to reflect a change in state of the application and then passes information to the view. A view accepts necessary information from the controller and renders a user interface to display that information.


---

Original Source: https://www.mindstick.com/interview/1165/what-is-asp-dot-net-mvc

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
