ado.net数据库连接字符串

不配置web.config的时候,写在程序中。

SqlConnection mySqlConnection = new SqlConnection(“server=(local); database=northwind; UserId=sa;Pwd= ");  

配置web.config


  
 

在程序中调用web.config中的数据库连接字符串

SqlConnection conn=new SqlConnection(System.Configuration .ConfigurationSettings .AppSettings ["conn"]);

你可能感兴趣的:(数据库,server,database,user)