How To

How to retrieve GPU, Hard Drive, Processor, OS, Printers, Network Information in C#
By Tan Lee Published on Jul 06, 2024 1.5K

In C#, you can retrieve various system information such as GPU, Hard Drive, Processor, OS using System.Management namespace.

How to Download Crystal Reports for Visual Studio 2015 & 2017
By Tan Lee Published on Jul 06, 2024 4.4K

The Crystal Reports for Visual Studio is now known as Crystal Reports Developer Edition for Visual Studio.

How to Minify HTML using WebMarkupMin in ASP.NET Core
By Tan Lee Published on Jul 04, 2024 1.06K

Minifying HTML in ASP.NET Core MVC using WebMarkupMin involves a few steps.

How to Minify HTML using WebMarkupMin in ASP.NET MVC
By Tan Lee Published on Jul 04, 2024 890

Minifying HTML at runtime in ASP.NET MVC using WebMarkupMin to make your web page load faster involves a few steps.

How to Minify HTML output from ASP.NET MVC
By Tan Lee Published on Jul 04, 2024 770

Minifying html in an ASP.NET helps your website load faster because it minimizes resource downloads.

How to read and write data from a CSV file in C#
By Tan Lee Published on Jul 04, 2024 966

To read and write data from a CSV file in C#, you can use the StreamReader and StreamWriter classes from the System.IO namespace.

How to disable internet protocol version 6
By Tan Lee Published on Jul 03, 2024 512

To disable internet protocol version 6 on Windows you can do the following step.

How to determine whether application has administrator rights in C#
By Tan Lee Published on Jul 03, 2024 718

In C#, you can determine whether your application has administrator rights using the following method.

How to use event delegation in jQuery
By Tan Lee Published on Jul 03, 2024 481

Event delegation in jQuery refers to the practice of using a single event listener to manage events for multiple elements that share a common parent.

How to optimize jQuery code
By Tan Lee Published on Jul 03, 2024 606

Optimizing jQuery code includes a number of best practices to ensure your code is efficient, readable, and performs well.

How to allow and manipulate downloads in Cefsharp
By Tan Lee Published on Jul 02, 2024 1.49K

CefSharp is a .NET library that wraps around the Chromium Embedded Framework, allowing you to embed Chromium-based browsers in .NET applications.

How to rename a column name in SQL
By Tan Lee Published on Jul 02, 2024 645

To rename a column in SQL, you typically use the ALTER TABLE statement along with the RENAME COLUMN clause.