ASP.NET Core

How to create a Toast Notifications in ASP.NET Core
By Tan Lee Published on Mar 13, 2021 15.62K

To create toast notifications in an ASP.NET Core application using the AspNetCoreHero.ToastNotification package, follow these steps.

Read more
HTTP Error 500.31 - Failed to load ASP.NET Core runtime
By Tan Lee Published on Jun 04, 2024 929

The HTTP Error 500.31 - Failed to load ASP.NET Core runtime is typically caused by a missing or misconfigured .NET runtime required to run your ASP.NET Core application.

Read more
Logging file using NLog in ASP.NET Core
By Tan Lee Published on Mar 08, 2020 8.95K

Integrating NLog into an ASP.NET Core application is a straightforward process.

Read more
How to use CORS in ASP.NET Core
By Tan Lee Published on Dec 19, 2024 453

In this article, we will explore one of the challenges users faced in the early days of web development the Same-Origin Policy (SOP) and how Cross-Origin Resource Sharing (CORS) became a solution.

Read more
How to Send Emails in ASP.NET Core
By Tan Lee Published on Dec 19, 2024 425

In this guide, we will learn how to send emails using ASP.NET Core.

Read more
Implementing Scheduled Background Tasks in ASP.NET Core with IHostedService
By Tan Lee Published on Dec 19, 2024 687

Scheduled background tasks in ASP.NET Core are essential for tasks that run independently of user interactions, such as sending emails, data processing, or performing system maintenance.

Read more
8 Essential Tips to Protect Your ASP.NET Core Application from Cyber Threats
By Tan Lee Published on Dec 16, 2024 600

Cybersecurity is vital for protecting sensitive data, maintaining user trust, and ensuring business continuity.

Read more
Implementing Caching in ASP.NET Core
By Tan Lee Published on Dec 14, 2024 392

Caching improves application performance by storing frequently accessed data in memory, reducing the need to repeatedly fetch it from the database.

Read more
Building a Custom Request Pipeline with ASP.NET Core Middleware
By Tan Lee Published on Dec 14, 2024 451

To create a custom request pipeline with ASP.NET Core Middleware, you can follow steps.

Read more
How to Use Google's Protocol Buffers in C#
By Tan Lee Published on Jul 10, 2024 5.88K

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 more