Hello! Welcome to my Blog đŸ™‚
I’m Soundar Anbalagan. I’ve 5 years of expertise in .NET and related technologies. The main reason to start this blog is to share what I learned and also for my personal learning. I hope you will find the articles helpful. You can follow me on Twitter, LinkedIn, and GitHub as well.
Happy reading đŸ™‚
Latest Posts
How to Easily Change Browser Time Zone for Testing
In this article, let’s learn how to easily change the browser time zone without changing the system date and time settings. Sometimes, we want to use the date time as is from the API without any local date time conversion,…
Trying out Native AOT in .NET 7 Preview 7
A few days ago, Microsoft released .NET 7 Preview 7. In this release, they finished most of the work related to Native AOT that was planned for .NET 7. They are planning all the future work for Native AOT here.…
Send Emails with Razor Templating in ASP.NET Core
In this article, let’s see how to send an email with dynamically generated email content using Razor View (.cshtml) in ASP.NET Core Create New Solution, Project, References & Add Packages using .NET CLINote: I’m using dotnet CLI to create the…
Convert HTML to PDF in ASP.NETÂ Core
Generating PDF files is a common use case. Sometimes, there will be a need to send dynamically generated pdf attachments(like bank statements, invoices, and more) over email or give PDF export/download option to the users in the web portal or…
Speed up API development using Open API Tools
Introduction Nowadays REST APIs are widely used to communicate between two services. Anybody who calls these API endpoints is called clients. The client could be a frontend framework like Angular, React, or another backend service or desktop applications or mobile…