Book Image

ASP.NET Core 2 Fundamentals

By : Onur Gumus, Mugilan T. S. Ragupathi
Book Image

ASP.NET Core 2 Fundamentals

By: Onur Gumus, Mugilan T. S. Ragupathi

Overview of this book

The book sets the stage with an introduction to web applications and helps you build an understanding of the tried-and-true MVC architecture. You learn all about views, from what is the Razor view engine to tagging helpers. You gain insight into what models are, how to bind them, and how to migrate database using the correct model. As you get comfortable with the world of ASP.NET, you learn about validation and routing. You also learn the advanced concepts, such as designing Rest Buy (a RESTful shopping cart application), creating entities for it, and creating EF context and migrations. By the time you are done reading the book, you will be able to optimally use ASP.NET to develop, unit test, and deploy applications like a pro.
Table of Contents (14 chapters)

Layout


In all the previous examples we have discussed, we did the complete view coding in a single file. This results in a lack of flexibility and reduced reusability.

Consider the following web page structure, where the Top Section contains the company logo or banner and the Side Section contains links to various sections of the site. The Content Section changes for every page:

If we code the complete content in a single view, we may have to duplicate the Top Section and Side Section on every page. If we want to change anything in the Side Section, we will have to change all the files. This clearly shows that a single view file is not the best solution.

The layout comes to the rescue in this scenario, defining the site structure, which can be reused across all web pages. The layout does not need to have a top section or side section; it can contain a simple HTML structure, where you can have common content and the body content will be rendered from the individual view.

We can use HTML frames...