Tony Tony

Tony Tony

  • NA
  • 10
  • 590

How can I create a Class/Method

Apr 9 2020 9:50 AM
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.

Answers (2)