What's New in ASP.NET Core 2.1

Wed, 01 Aug 2018 10:00:00 GMT

From Razor UI and identity improvements, to updates to Webhooks and Web APIs, the latest version of ASP.NET Core advances the state of the art in Microsoft's Web application framework.

Read article

Simpler ASP.NET MVC Apps with Razor Pages

Fri, 01 Sep 2017 10:00:00 GMT

Steve Smith explains why you shouldn’t write off Razor Pages as just a “training wheels” feature meant for hobbyist programmers. Learn how Razor Pages (alone or in combination with traditional controller-and-view pages) can improve the design of your ASP.NET Core applications.

Read article

Feature Slices for ASP.NET Core MVC

Thu, 01 Sep 2016 10:00:00 GMT

The new Feature Slices functionality gives developers a way to organize their ASP.NET Core MVC projects by Feature, rather than by Models, Views, and Controllers.

Read article

Real-World ASP.NET Core MVC Filters

Mon, 01 Aug 2016 10:00:00 GMT

Filters are a great, often underutilized feature of ASP.NET MVC and ASP.NET Core MVC. They provide a way to hook into MVC’s action invocation pipeline, which makes them great for pulling common, repetitive tasks out of your actions, as Steve Smith explains.

Read article

Use Custom Middleware to Detect and Fix 404s in ASP.NET Core Apps

Wed, 01 Jun 2016 10:00:00 GMT

Steve Smith shows how you can use a bit of middleware to add a “lost and found” to your ASP.NET Core app that will keep your users from encountering 404 errors.

Read article

Writing Clean Code in ASP.NET Core with Dependency Injection

Sun, 01 May 2016 10:00:00 GMT

Dependency Injection (DI) is a technique that allows applications to be constructed from loosely coupled modules. ASP.NET Core has built-in support for DI and uses it to provide services to applications built on it. Learn how to use DI to access ASP.NET services as well as your own application services.

Read article