How To

How to Check Internet Connection Status in Javascript
By Tan Lee Published on Nov 05, 2024 216

To check the internet connection status in JavaScript, you can use the navigator.onLine property, which is built into most modern browsers.

How to detect browsers in ASP.NET with browser files
By Tan Lee Published on Nov 04, 2024 323

This article explains how to configure browser files in ASP.NET for effective browser detection.

How to Determine If a Browser is Running in C#
By Tan Lee Published on Nov 04, 2024 526

To check for open browser instances in C#, you can use the System.Diagnostics namespace, which provides access to the processes running on your system.

How to fix 'Control.Invoke() is called before window handle is created'
By Tan Lee Published on Nov 01, 2024 741

The error message "Invoke or BeginInvoke cannot be called on a control until the window handle has been created" typically occurs when you attempt to call Invoke() or BeginInvoke() on a Windows Forms control before its handle has been initialized.

How to use application-specific settings in Visual Studio
By Tan Lee Published on Nov 01, 2024 486

In Visual Studio, application-specific settings allow you to manage user preferences and application data easily.

How to use stored procedure in Entity Framework Core
By Tan Lee Published on Nov 01, 2024 171

Using stored procedures in Entity Framework Core (EF Core) is a straightforward process.

How to add logging in ASP.NET
By Tan Lee Published on Nov 01, 2024 190

Here is code snippet that writes some text to log.txt file in web root folder.

How to fix 'System.Text.Json Deserialize() return empty values'
By Tan Lee Published on Nov 01, 2024 460

To fix issues where System.Text.Json.Deserialize() returns empty or default values, follow these steps.

How to display custom string for enum value in C#
By Tan Lee Published on Oct 29, 2024 367

In C#, you can display a custom string for enum values by using the Description attribute from the System.ComponentModel namespace.

When should I use NVARCHAR Max?
By Tan Lee Published on Oct 29, 2024 502

Use NVARCHAR when column data sizes vary significantly. Opt for NVARCHAR(MAX) when the sizes are unpredictable and may exceed 4,000 byte-pairs.

How to Convert byte array to hex string in C#
By Tan Lee Published on Oct 29, 2024 399

To convert a byte array to a hex string in C#, you can use the BitConverter class or manually format each byte.

How to divide a integer and get decimal in C#
By Tan Lee Published on Oct 29, 2024 758

In C#, when you divide two integers using the / operator, the result is also an integer.