How To

How to use Dependency Injection in ASP.NET Core
2/18/2024 9:06:48 AM  67

ASP.NET Core is designed from the ground up to support and leverage dependency injection

How to Export data to Excel file with ASP.NET MVC
2/18/2024 2:11:53 AM  54

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

How to use Autofac for Dependency Injection in ASP.NET MVC
2/18/2024 2:00:02 AM  47

This example will show you how to use autofac in C#.NET

How To Customize Password Hashing in ASP.Net Identity
2/18/2024 1:55:04 AM  49

This post shows you how to implement custom password hasher in ASP.NET Identity.

How to use Log4Net with ASP.NET MVC
2/18/2024 1:51:56 AM  48

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.

How to Minify HTML using WebMarkupMin in ASP.NET MVC
2/18/2024 1:45:01 AM  37

This post shows you how to minify HTML at runtime in ASP.NET MVC to make your web page load faster

How to Minify HTML using WebMarkupMin in ASP.NET Core
2/18/2024 1:42:21 AM  66

This post will show you how to Minify HTML using WebMarkupMin in ASP.NET Core MVC.

How to use AJAX In ASP.NET MVC
2/18/2024 1:39:54 AM  55

This post shows you how to Implement AJAX in ASP.NET MVC. Ajax is the ability to read data and communicate information asynchronously.

How to use Syntax highlighter in ASP.NET MVC
2/18/2024 1:37:43 AM  49

This post shows you how to integrate Syntax highlighter into your website.

How to fix Can't use Server.MapPath in ASP.NET MVC
2/18/2024 1:35:03 AM  51

Server.MapPath returns the physical file path corresponding to the specified virtual path

How to fix Can't find Request.GetOwinContext in Web API
2/18/2024 1:33:47 AM  38

If you get an error can't get the UserManager from OwinContext in ApiController using ASP.NET MVC

How to Bundling and Minification in ASP.NET MVC
2/18/2024 1:32:44 AM  39

Bundling and minification are very useful to improve request load time. It improves load time by reducing the number of requests to the server and reducing the size of requested resources.