Search

How to use Autofac in C#
By Tan Lee Published on May 22, 2024 18K

Using dependency injection (DI) container for .NET applications using Autofac in C#

Read more
How to make a file copy progress in C#
By Tan Lee Published on Feb 20, 2024 984

To implement file copy progress in C#, you can use the File.Copy method along with FileStream to read from the source file and write to the destination file while monitoring the progress.

Read more
How to use Redis Cache in ASP.NET Core
By Tan Lee Published on Feb 18, 2024 575

This post shows you how to use Redis Cache in ASP.NET Core using C# Code.

Read more
How to Export data to Excel file with ASP.NET MVC
By Tan Lee Published on Feb 18, 2024 559

This post shows you how to export data to excel file using C# in ASP.NET MVC

Read more
How to use Log4Net with ASP.NET MVC
By Tan Lee Published on Feb 18, 2024 566

This post shows you how to use log4net in c# asp.net web application. We will use log4net to log error, then write the error to file or database.

Read more
How to Get current controller or action name in ASP.NET MVC
By Tan Lee Published on Feb 18, 2024 860

This tutorial shows you how to get current controller or action name in ASP.NET MVC using c# code.

Read more
How to se 'Require strong password in ASP.NET Identity'
By Tan Lee Published on Feb 18, 2024 445

This post shows how to configure a require strong password in ASP.NET Identity using C#.NET.

Read more
How to implement Google reCAPTCHA in ASP.NET MVC
By Tan Lee Published on Feb 18, 2024 490

This post shows how to implement google recaptcha in ASP.NET MVC using C# code.

Read more
How to use Abstract Factory Pattern in C#
By Tan Lee Published on Feb 16, 2024 715

This post shows you how to use Abstract Factory pattern in C# code.

Read more
How to use Repository Pattern in C#
By Tan Lee Published on Feb 16, 2024 609

This tutorial shows you how to use Repository Pattern in ASP.NET Core using C#.NET.

Read more