Tuesday, March 12, 2013

How to add connection string in c sharp:


// Add this to namespace in form..
using System.Data;                      
using System.Data.SqlClient;


SqlConnection cn = new SqlConnection("Your Connection String");

No comments:

Post a Comment