top of page
Search
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
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
Aug 4, 2022
Full-Text Search with Entity Framework Core & SQL Server
When it comes to searching for addresses in a database table, a typical approach involves using the SQL Like (%) operator for an exact...
The Tech Platform
Jul 15, 2022
How to Upload Image and Display in Image Control in ASP.NET?
In this articles, we will explain "how you can upload the image on server using Image Control in ASP.NET web-forms". Step 1: Create a new...
The Tech Platform
Jul 7, 2022
Configure Multiple DBs with Repository pattern in .Net Core
To configure mongoDB, we need to install mongoDB driver for C#, this we can install via NuGet package manager. After installation we need...
The Tech Platform
Jun 20, 2022
How to use LoggerMessage in ASP.NET Core
ASP.NET Core is a popular web framework that allows developers to build modern, high-performance web applications using the .NET...
The Tech Platform
May 28, 2022
.NET Core Best Practices
.NET Core is a free, open-source, general-purpose development platform maintained by Microsoft. It is a cross-platform framework that...
The Tech Platform
May 27, 2022
State Pattern : a simple implementation in C# dotnet core.
The State pattern allows an object to alter its behavior when its internal state changes. This is achieved by swapping internal state...
The Tech Platform
May 5, 2022
Define DTO(Data Transfer Object). How to use Data Transfer Objects in ASP.NET Core 3.1
Data Transfer Object (DTO) a Data Transfer Object (DTO) is a pattern used to transfer data between software components, particularly...
The Tech Platform
May 5, 2022
Simple web site crawler using .NET Core and C#
This is an elementary Web site crawler written using C# on .NET Core . What do we mean by crawling a web site ? No! We are not indexing...
bottom of page