• The absolute proper way to do 404 pages in ASP.Net MVC

    Websites and webservices should return the proper HTTP status codes as response to requests, along with the possible proper body. When you’re a using ASP.Net MVC web application it can be a little tricky because of a configuration quirk I quite dislike and didn’t find much info about. They improved this practice immensely in ASP.Net Core web applications. So, I want to make this post to clear it up and get it all in one nice explanation and solution.

  • .Net MVC @helper in Razor view using C# and VB

    Creating reusable pieces of HTML with dynamic data for .Net MVC Razor made quick and easy with helpers.