How to Implement Distributed Cache in ASP.NET Core

A distributed cache is a cache shared by multiple app servers, typically maintained as an external service to the app servers that access it. A distributed cache can improve the performance and scalability of an ASP.NET Core app, especially when the app is hosted by a cloud service or a server farm. This article will […]

Read more
How to Send Email Using Gmail in ASP.NET Core

In previous post, I have explained how to send email using Mailkit in ASP.NET Core. In this post, I will explain about how to send email using Gmail in ASP.NET. The .NET framework has built-in namespace for handling email settings, which is System.Net.Mail namespace. In the following example, I’ll use two classes from the System.Net.Mail namespace: For email settings, […]

Read more
How to Host ASP.NET Core Website with ASPHostPortal

In this article I will walk through the process of setting up an ASP.NET web application on a shared ASPHostPortal Windows server. I will mainly walk through a typical ASP.NET or .NET MVC deployment using shared hosting on ASPHostPortal. For me, it is very easy to use Windows hosting environment to publish ASP.NET Core application. […]

Read more
How to Fix Worker Process Shutdown in IIS

Internet Information Service (IIS) is a pain for developers and may cause more troubles for them on a shared host where they don’t have full access. One of the usual problems that I encounter is the IIS Application Pool’s Idle Timeout which I can’t update the settings due to insufficient permissions. Let’s see which problem […]

Read more
6 Advantages Using Cloud Hosting than Traditional Shared Hosting

In today’s modern business environment, every visionary business owner or leader is looking to cut costs and maximize efficiency. As technology continues to evolve, organisations and institutions are looking for new and innovative ways to manage their web hosting requirements. Cloud hosting, currently a popular buzzword, has become an effective and revolutionary method. Everyone is […]

Read more
How to Implement Cookies in ASP.NET Core 6

The term cookie refers to a piece of data that is saved on the computer of a user and is generally used to record information about the user. Most browsers store each cookie as a small file, but Firefox stores them all in a single file. Cookies are made up of two parts: a key […]

Read more
Know Further About Global Error Handling ASP.NET 6

Introduction When we are building our application, although we hope that our application will run without any errors until the end of time. This is not really the case exceptions happens in applications and we need to handle them. Exception Handling is a foundation that we need to consider while we are designing and building […]

Read more