top of page
Search

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 8, 2022
Tips for writing Clean C# Code
Clean code is the art of writing the code that humans can understand easily. Writing code is not easy task, but when it comes to writing...

The Tech Platform
Aug 2, 2022
How to Format Response Data in ASP.NET Core
In web development, the transmission of data between a server and a client is a fundamental aspect. Response data, representing the...

The Tech Platform
Jul 29, 2022
Introduction to Controller in ASP.NET Core
What is Controller ? The Controller in MVC architecture handles any incoming URL request. The Controller is a class, derived from the...

The Tech Platform
Jul 28, 2022
What is middleware in .NET? How it Works?
In .Net 5, middleware plays a vital role to handle the request-response pipeline. In here we are going to discuss the concept of...

The Tech Platform
Jul 27, 2022
How to implement rate limiting in ASP.NET Core
What is Rate Limiting? Rate limiting is a technique used to limit the number of requests that a client can make to a web application or...

The Tech Platform
Jul 25, 2022
Implementing Digest Authentication in .NET
TL;DR: You can read the code in GitHub repository here, the README provides an example usage. For one request we generate two requests...

The Tech Platform
Jul 22, 2022
Create a web API using minimal API ASP.NET Core
Minimal APIs are architected to create HTTP APIs with minimal dependencies. They are ideal for microservices and apps that want to...

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 13, 2022
How to send email in ASP.NET Core?
Sending emails is a common requirement in ASP.NET Core web applications. In this article we will learn how to send emails with...
bottom of page