
Microsoft ASP.NET MVC is a web development platform shipped with the .NET Framework, it is build on the top of the ASP.NET which is shared with other web
You can start with a controller:
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
Models
Models are classes of data
Views
Views are the user interface
Controllers
Controllers are wokring to delivery user input/output