Monday, June 9, 2014

Difference Types of Connection to Data Base using the Asp.Net

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#

  1. One method is used for the basic connection using with SqlConnection class
  2. And another method with DbConnection  class


Coding

Steps

using System.Configuration;
using System.Data;
using System.Data.SqlClient;


Read More »