top of page
Search

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 8, 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
Aug 2, 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 29, 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 28, 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 27, 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 25, 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 22, 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...
The Tech Platform
Jul 13, 2022

CI / CD with GitHub in .NET
GitHub uses GitHub Actions to launch CI / CD, the documentation for which can be found here and read in full. Here’s an example of how to...
The Tech Platform
Jul 11, 2022

How to Migrate Old ASP.NET Applications to .NET Core?
.NET Core is a new version of .NET Framework, which is a free, open-source, general-purpose development platform maintained by Microsoft....
The Tech Platform
Jul 4, 2022
bottom of page