ASP.NET MVC

Overview of ASP.NET Core

ASP.NET Core is a free and open-source web framework, and the next generation of ASP.NET, developed by Microsoft. It is a framework that runs on both the full .NET Framework, on Windows, and the cross-platform .NET Core.

The framework is brand new and unites the previously separate ASP.NET MVC and Web API into a single programming model. ASP.NET Core does have a high degree of concept compatibility with ASP.NET MVC.
 

Rate Limiting in ASP.NET MVC

Rate limiting, also known as request throttling, is an important mechanism for controlling how often web resources are accessed from a client. Implementing it on your web application or service will allow you to utilize its resources better and protect it from a high volume of malicious requests. In this article we will demonstrate how to implement and setup request throttling in an ASP.NET MVC application.

Subscribe to RSS - ASP.NET MVC