ASP.NET Core

How to create a Toast Notifications in ASP.NET Core
1/13/2025 2:06:52 AM  14.87K

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
1/2/2025 6:56:19 AM  556

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
1/2/2025 3:12:01 AM  8.6K

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

Read more
How to use CORS in ASP.NET Core
12/19/2024 2:52:19 PM  263

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
12/19/2024 2:51:14 PM  221

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
12/19/2024 9:45:18 AM  291

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
12/16/2024 3:02:43 PM  350

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

Read more
Implementing Caching in ASP.NET Core
12/14/2024 4:26:01 AM  229

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
12/14/2024 4:07:11 AM  287

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#
11/27/2024 2:16:29 PM  5.54K

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