Hello,
I have this connection string code below;
string conn = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString.ToString();
SqlConnection cn;
cn = new SqlConnection(conn);
cn.Open();
How can I create a Class/Method to be able to call just a string or variable whenever I need this connection strings on my code page?
I hope my question is clear? Thanks for helping in advance.
Loading
Ashutosh GuptaPosted Apr 9, 2020, 1:16 PM
Rajanikant HawaldarPosted Apr 9, 2020, 10:23 AM