Programmers How to Get Started with ASP.NET for API Development Sep 26, 2020 ASP.NET is a platform for building web APIs with C# and .NET. It’s commonly used for app backends, and can automatically serialize classes to…
Programmers How to use API versioning in ASP.NET Core Jun 23, 2020 When developing APIs, you should keep one thing in mind: Change is inevitable. When your API has reached a point where you need to add more…
Computing How to export data to Excel in ASP.NET Core 3.0 Apr 21, 2020 When building web applications, you will often need to import or export data from or to Word or Excel documents. There are several ways to achieve…
Computing How to use URL Rewriting Middleware in ASP.NET Core Oct 22, 2019 URL rewriting is the process of altering request URLs based on one or more pre-defined rules. You can take advantage of the URL Rewriting Middleware…
Computing How to implement rate limiting in ASP.Net Core Oct 8, 2019 When building web applications, you might often want to control the frequency of user requests to prevent malicious attacks. In other words, you…
Computing How to use Azure Application Insights in ASP.Net Core Oct 7, 2019 Azure Application Insights is an extensible application performance management (APM) service that can be used to monitor performance, detect…
Computing How to implement global exception handling in ASP.Net Core MVC Sep 16, 2019 Exceptions are runtime errors that might occur in your application. If exceptions are not handled properly, the program in execution is terminated.…
Computing How to work with worker services in ASP.Net Core Aug 20, 2019 ASP.Net Core 3.0 Preview 3 adds support for creating worker services, which are background services like Windows services and Linux daemons. There…
Computing How to use the Data Protection API in ASP.Net Core Aug 12, 2019 The Data protection stack in ASP.Net Core provides an easy-to-use cryptographic API for protecting data, including the necessary mechanisms for…
Computing How to work with session state in ASP.Net Core Jul 30, 2019 ASP.Net Core is an open source, cross-platform, lean, extensible and modular framework for building high-performance web applications. Session state…