News

MIX09 is now over, but many of the sessions are still available to view. Of particular note are the ASP.NET MVC tutorials that will help you better understand this new development framework.Phil ...
Surprisingly, although ASP.NET Core provides plenty of options for handling 404 errors gracefully, the ASP.NET Core MVC runtime doesn’t take advantage of them by default.
First off, let’s create an ASP.NET Core MVC project in Visual Studio 2019. Following these steps will create a new ASP.NET Core MVC project in Visual Studio 2019 using .NET 5.
In ASP.NET MVC Core (just "MVC Core' from here), all configuration is done in just one place: the Startup class in the project's Startup.cs file. That's good because there's a lot of configuration to ...
However, instead of returning the View to ASP.NET MVC so that it can process your View, you process the View yourself by calling the View's ExecuteResult method. The ExecuteResult method must be ...