Search

Server.MapPath in C#
By Tan Lee Published on Nov 13, 2024 769

In C#, the Server.MapPath method was commonly used in ASP.NET Web Forms to convert a virtual path to a physical file system path on the server.

Read more
How to use Metro Progress Bar in C#
By Tan Lee Published on Jun 08, 2017 12.92K

To use the Metro Progress Bar in a C# Windows Forms application, you typically need a library that provides a modern "Metro-style" UI component.

Read more
How to export data to excel using AngularJS
By Tan Lee Published on May 20, 2024 729

To export data to an Excel file or download an Excel file using AngularJS and a C# Web API, you will typically follow these steps.

Read more
How to convert binary to decimal in C#?
By Tan Lee Published on Nov 15, 2024 301

To convert a binary number to a decimal number in C#, you can manually process the binary digits, or you can use built-in methods like Convert.ToInt32 for a more straightforward approach.

Read more
How to connect to MongoDB in C#
By Tan Lee Published on Nov 15, 2024 312

To connect to MongoDB from a .NET application using the official MongoDB .NET driver, follow these steps.

Read more
How to get Mongo database specified in connection string in C#
By Tan Lee Published on Nov 15, 2024 250

To get the MongoDB database specified in the connection string in C#, you can use the MongoDB .NET driver.

Read more
How to Create Contact Form Flat Responsive in ASP.NET MVC
By Tan Lee Published on May 29, 2017 10.4K

Creating a contact form in an ASP.NET MVC 5 application using ASP.NET Identity, Entity Framework Code First, and C# involves several steps.

Read more
How to Create Report Viewer using Stored Procedure in C#
By Tan Lee Published on Jun 08, 2017 12.22K

Creating an RDLC report with the Report Viewer using Entity Framework and a stored procedure in C# involves several steps.

Read more
How to create a Web Browser in C#
By Tan Lee Published on Jul 11, 2017 6.87K

Creating a simple web browser in C# using Windows Forms is relatively easy, thanks to the WebBrowser control provided by .NET.

Read more
How to read an image file in C#
By Tan Lee Published on Jul 11, 2017 4.05K

To read an image file in a C# Windows Forms application, you typically use the System.Drawing namespace, which provides classes for working with images.

Read more