Handle unknown actions elegantly in ASP.NET 5 by creating routes that dynamically map to the views in your application. ASP.NET 5 is an open source web application development framework for building ...
The biggest change in handling Views in ASP.NET Core is that you can now have more than one _Layout.cshtml file in your project and your Views will pick the one "closest to them." In ASP.NET MVC, you ...
Take advantage of security headers in ASP.NET Core MVC 5 to protect your website against cross-site scripting, code injection, clickjacking, and other attacks. ASP.NET Core MVC 5 is a lightweight, ...
In an earlier column I decide to look at one of the more interesting new features in ASP.NET Core: view components. View components look very like a mini-Controller class and View except that you ...