Tag: MVC5
MVC5 – or rather, ASP.NET MVC 5 – is Microsoft’s web framework. It’s a model-view-controller (hence the name MVC) framework for building dynamic web sites with clean separation of concerns.
Borrowing from Wikipedia:
The ASP.NET MVC is a web application framework developed by Microsoft, which implements the model–view–controller (MVC) pattern. It is open-source software, apart from the ASP.NET Web Forms component which is proprietary.
Being mostly open-source, you can find the code here:
https://github.com/aspnet/AspNetWebStack
Fore more help getting started, see this:
https://docs.microsoft.com/en-us/aspnet/mvc/overview/getting-started/introduction/
My posts in this category (with this tag) usually concern all kinds of web-development stuff I did before ASP.NET Core.