News

ASP.NET MVC 5.1 includes updates to attribute based routing and the stock editor templates. In this look at some of those new features in this incremental update, I'll cover some of the new attribute ...
ASP.NET MVC 5 introduces the same attribute based routing used by Web API 2. This optional syntax allows routes to be registered declaratively instead of by manipulating a RouteCollection.
Enabling attribute based routing With MVC 5 and attribute based routing, you gain finer control of your routes at both the controller and action level.
Data tokens are a useful feature of the ASP.NET Core MVC routing system, as they allow you to map routes to arbitrary values. Let’s understand this with an example.
Overloading action methods that use identical HTTP verbs is tricky in ASP.NET Core 5, but there are a number of ways to do it. Let’s explore them.
There are a ton of different ways to accomplish sorting, paging, and searching but here is how we’ve been doing it lately with ASP.NET MVC 5 in C# with Entity Framework 6.