protected void Page_Load(object sender, EventArgs e) { //string m_connectionString = ConfigurationManager.ConnectionStrings["ConnectionString"].ToString(); SQLDataProvider prov = new SQLDataProvider("Some Connection String"); StationaryLogger.Info("Application is working"); }
public SQLDataProvider(string connString) { ConnectionString = connString; //logger = new StationaryLogger(); StationaryLogger.Info("Connection String: " + connString); }