ASP.NET Core
Building a Custom Request Pipeline with ASP.NET Core Middleware
By Tan Lee Published on Dec 14, 2024 778
To create a custom request pipeline with ASP.NET Core Middleware, you can follow steps.
Read moreHow to Use Google's Protocol Buffers in C#
By Tan Lee Published on Jul 10, 2024 6.45K
Using Protocol Buffers (Protobuf) in ASP.NET Core Web API involves a few steps to set up, including defining your messages, generating C# classes from those messages, and integrating them into your API controllers.
Read moreHTTP Error 500.30 ASP.NET Core app failed to start
By Tan Lee Published on Nov 14, 2024 738
The "HTTP Error 500.30 - ASP.NET Core app failed to start" error typically indicates that there is an issue with your ASP.NET Core application that prevents it from starting up properly.
Read moreDifferences Between AddTransient, AddScoped, and AddSingleton
By Tan Lee Published on Nov 12, 2024 1.14K
In ASP.NET Core, AddTransient and AddScoped are two different ways of registering services in the dependency injection container, and they control the lifetime of the services they register.
Read moreHow to secure ASP.NET Core with NWebSec
By Tan Lee Published on Nov 07, 2024 785
To apply the NWebSec library in a .NET Core application to enhance security, you need to follow a series of steps to install and configure the middleware, which will automatically add various security headers to your HTTP responses.
Read moreHow to Generate Barcode in ASP.NET Core using C#
By Tan Lee Published on Jan 02, 2020 6.07K
To generate a barcode in a C# ASP.NET Core application using the BarcodeLib library, follow these steps.
Read moreHow to Generate QR Code in ASP.NET Core using C#
By Tan Lee Published on Jun 05, 2024 6.79K
Generating QR codes in C# ASP.NET Core using QRCoder is a straightforward process.
Read moreHow to use jQuery-ajax-unobtrusive in ASP.NET Core
By Tan Lee Published on Mar 11, 2020 5.26K
To use Microsoft.jQuery.Unobtrusive.Ajax in an ASP.NET Core project, you'll need to follow these steps.
Read moreGetting Started with ASP.NET Core 3.0
By Tan Lee Published on Nov 08, 2019 4.03K
Creating an ASP.NET Core project in Visual Studio 2019 is a straightforward process.
Read moreHow to Upload files in ASP.NET Core Web API using C#
By Tan Lee Published on Nov 10, 2019 9.01K
Uploading files in an ASP.NET Core Web API is a common task that involves handling multipart form-data requests.
Read more