ASP.NET 链接数据库的两种配置

打开 Web.config

链接方法①(推荐)

  
    
  
链接方法②

  
    
      
  
方法①在CS中的使用:

 string str=System.Configuration.ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString;
 SqlConnection sqlstr = new SqlConnection(str);
或者

string str=System.Configuration.ConfigurationManager.ConnectionStrings["DefaultConnection"].ToString();
SqlConnection sqlstr = new SqlConnection(str);


方法②在CS中的使用:

 string str=System.Configuration.ConfigurationManager.appSettings["connStr"].ToString();
 SqlConnection sqlstr = new SqlConnection(str);




你可能感兴趣的:(ASP.NET)