ASP.NET using C# Notes

connection string to the constructor of Connection class like this- SqlConnection con= new SqlConnection(constr); here: con = Connection object constr= a string variable that contain Connection String Opening Connection: When Connection Object is created then by calling Open() method of Connection class, we can create an active connection. Like- ................
................