Presenting ASP.NET Core MVC
In this chapter, you will learn how to implement an application presentation layer. More specifically, you will learn how to implement a web application based on ASP.NET Core MVC.
ASP.NET Core is a .NET framework for implementing web applications. ASP.NET Core has been partially described in previous chapters, so this chapter will focus mainly on ASP.NET Core MVC. More specifically, this chapter will cover the following topics:
- Understanding the presentation layers of web applications
- Understanding the basics of ASP.NET Core
- Understanding how ASP.NET Core MVC creates the response HTML
- Understanding the connection between ASP.NET Core MVC and design principles
We will review and give further details on the structure of the ASP.NET Core framework, which, in part, was discussed in Chapter 13, Applying Service-Oriented Architectures with .NET, and Chapter 4, Deciding on the Best Cloud-Based Solution. Here, the main...