top of page
Search

HttpPut Or HttpPatch in ASP.Net Core ?
The HTTP PUT request method creates a new resource or replaces a representation of the target resource with the request payload. The HTTP...
The Tech Platform
Feb 17, 2022

Consume Web API with C# HttpClientFactory
Sometimes we need to integrate an external API into our code even as a backend service and not just the frontend integrating with the UI...
The Tech Platform
Feb 5, 2022

How to properly dispose in AspNetCore application?
The quick answer implies that your AspNetCore aplication is stateless. Meaning that all state that is required for your application to...
The Tech Platform
Jan 31, 2022

Global Exception Handling in .NET 6
Exception handling is one of the important tasks in the application development cycle. Today, I am planning to tell you the effective way...
The Tech Platform
Jan 28, 2022

How to send emails in .Net Core Web API
Sending emails is an integral part of web development and a better way to connect with your users and keep them up to date with...
The Tech Platform
Jan 27, 2022

Testing file upload with Swagger in ASP.Net core
Let’s assume you have an API which is used for uploading image to the backend and you wanted to test it when the UI is still in...
The Tech Platform
Jan 25, 2022

What is State Management in ASP.NET?
State management in ASP.NET refers to the process of maintaining the state of a web application between requests from the same user. In...
The Tech Platform
Dec 28, 2021

Repository Pattern with Entity framework in ASP.NET Core 6.0
Repository pattern is quite famous pattern in .NET world while accessing backend data using ORM (Object-Relational Mapping) system such...
The Tech Platform
Dec 27, 2021

How to perform validations in ASP .NET web applications
For any product that you manufacture today, it is important to perform validation before delivering it to the client. You need to...
The Tech Platform
Dec 27, 2021

How to Migrate ASP.NET HTTP Handlers and Modules to ASP.NET Core Middleware
ASP.NET, a stalwart in web application development, has undergone significant transformations over the years. Among these changes, the...
The Tech Platform
Dec 24, 2021
bottom of page