Book Image

Mastering ASP.NET Core 2.0

By : Ricardo Peres
Book Image

Mastering ASP.NET Core 2.0

By: Ricardo Peres

Overview of this book

<p>ASP.NET is an open source web framework that builds modern web apps and services. This book is your one-stop guide to the new features of ASP.NET Core 2.0, including web APIs and MVC. We begin with a brief overview of the basics, taking you through the MVC pattern, platforms, dependencies, and frameworks. We then move on to setting up and configuring the MVC environment before talking about routing and advanced routing options. Next, we'll look at model binding, controllers and actions, filters, user authentication, and testing.</p> <p>Moving on, you’ll learn about all the aspects of syntax and processes when working with Razor. You’ll be introduced to client-side development and will get to know about the security aspects of ASP.NET Core. We will also look at Microservices with ASP.NET Core. Finally, you’ll find out how to deploy ASP.NET Core to new environments such as Azure, AWS, and Docker. By the end of the book, you will be well versed with development in ASP.NET Core and will have a deep understanding of how to interact with the framework and work cross-platform.</p>
Table of Contents (23 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Putting it all together


In case you want to serve some files on the filesystem, always specify a virtual path for it, so as not to interfere with your controllers.

Areas are a handy way to structure your contents. They are particularly useful in big ASP.NET Core projects.

To combine the normal way of static files, directory browsing and default documents, you can just call UseFileServer instead of the three other methods.

Beware of unwanted file downloads, as it's not easy to apply security to them.

Resource files can be quite useful, as we do not need to distribute the files separately from the assembly, and can use the same versioning as the rest of the code. They are definitely worth considering.

Use URL rewriting when you do not wish to expose the inner structure of your site or when you wish to comply to an externally-defined URL.

Use hosted services to spawn background services automatically and have them linked to the application's lifetime.