Google maps user control for ASP.Net

Download source View Demo Google Maps user control Introduction Lot of us are familiar with Google map. Google has provided a very reach APIs that can be used in web applications via JavaScript. But this requires JavaScript knowledge. I don’t know about others, but for me it was a little difficult to use JavaScript along… Read More »

Store image in SQL Server database using C#

Download Source from GitHub This sample code explains you how you can store image in SQL Server database using C#. It uses ADO.Net System.Data.SqlClient namespace. Images can be stored in SQL server using SQL parameters. For storing Image, we can use “Image” data type in SQL Server. Please note that in general it’s not recommended… Read More »

How to create and run Eclipse Project with a MapReduce Example

This tutorial demonstrates how you can create and run MapReduce example project with Eclipse IDE. It does not discuss details of actual code. For that you should visit official Apache Hadoop website. https://hadoop.apache.org/docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/MapReduceTutorial.html Note: To install Eclipse for Java on Lubuntu or Ubuntu environment, visit below link. http://shabdar.org/hadoop-java/137-how-to-install-eclipse-for-java-in-lubuntu-or-ubuntu.html Steps to setup eclipse Open Eclipse and create… Read More »

How to Store file in SQL Server database using C#

Download Source from GitHub This sample code explains you how you can store files in SQL Server database using C#. It uses ADO.Net System.Data.SqlClient namespace. Files can be stored in SQL server using SQL parameters. For storing file, we can use “VARBINARY (MAX)” data type in SQL Server. Please note that in general it’s not… Read More »

Virtual directory not being configured as an application in IIS

Problem Configuration ErrorDescription: An error occurred during the processing of a configurationfile required to service this request. Please review the specific errordetails below and modify your configuration file appropriately. Parser Error Message: It is an error to use a section registered as allowDefinition=’MachineToApplication’ beyond application level. This error can be caused by a virtual directory… Read More »

Google Maps Control for ASP.Net – Part 2

Free Open source Control Introduction This is second part in two part series of my article Google Maps User Control for ASP.Net. In first part Google Maps Control for ASP.Net – Part 1 I have explained how to use this control in your ASP.Net application. In this part I am going to explain source code… Read More »

Connecting to MySQL database using C# and .Net

Download MySQL script file Download Sample This article shows you how you can connect to MySQL database using MySQL Connector for .Net. I will also show you how you can update mysql database records using C#. Prerequisites for running sample Visual Studio 2019 MySQL database installed on your local machine or remote host. Download link… Read More »

Category: C#

Privacy Policy

What is the DoubleClick DART cookie? The DoubleClick DART cookie is used by Google in the ads served on this site displaying AdSense for content ads. When users visit this website and either view or click on an ad, a cookie may be dropped on that end user’s browser. The data gathered from these cookies… Read More »

Connect to Oracle using ASP.Net and C# or VB.Net

Create a new project in Visual Studio using eight C# or VB.Net Add reference to Oracle.DataAccess.dll file. Typically this file can be found in C:\oracle\product\10.2.0\client_1\BIN directory. This directory may be different based on your oracle configuration. Once library is referenced, go to your class file where you want to create oracle connection. Add following statements… Read More »

Category: C#