Category Archives: C#

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 »

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#

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#