top of page
Search

The Tech Platform
Feb 6, 2023
Types of caching in ASP.NET
Caching is a mechanism in ASP.NET that allows you to store data in memory for a specified period of time so that it can be reused quickly...

The Tech Platform
Jan 25, 2023
Introduction to MasterPage in ASP.NET
A master page in ASP.NET is a template that defines the layout and visual structure of one or more web pages on a website. It allows...

The Tech Platform
Oct 22, 2022
Handling Null Values in ASP.NET Core
ASP.NET Core MVC is the .NET Core counterpart of the ASP.NET MVC framework. You can take advantage of ASP.NET Core MVC to build...

The Tech Platform
Oct 20, 2022
What are Static files in ASP.NET Core? How to use it?
Static files, such as HTML, CSS, images, and JavaScript, are assets an ASP.NET Core app serves directly to clients by default. Static...

The Tech Platform
Sep 12, 2022
How to use feature flags in ASP.NET Core?
Feature flags in ASP.NET Core allow us to change application behaviour i.e. enable or disable a specific functionality in the application...

The Tech Platform
Sep 6, 2022
Introduction to Worker Services in ASP.NET Core
Worker Services in ASP.NET Core provide a robust foundation for building efficient, long-running background tasks. These specialized...

The Tech Platform
Sep 2, 2022
How to consume ASP.NET Core Web API using RestSharp
What is RestSharp? RestSharp is a comprehensive, open-source HTTP client library that works with all kinds of DotNet technologies. It can...

The Tech Platform
Aug 29, 2022
Advanced NLog features in ASP.NET Core
NLog is an open source lightweight logging framework, which provides rich log routing and management functions.

The Tech Platform
Aug 10, 2022
Introduction to Channels in .NET
What are Channels? Channel is a concept for passing data between producers and consumers. More specifically, a channel has a queue where...

The Tech Platform
Aug 10, 2022
C# Classes and Objects
A class is a user-defined blueprint or prototype from which objects are created. Basically, a class combines the fields and...
bottom of page