Introduction
In this
article we are going to learn the topic of writing the different type of
connections to the database for using the asp.net c#
One method
is used for the basic connection using with SqlConnection class
And another method
with DbConnection class
Coding
Steps
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
...