『壹』 在ASP.NET的web.config中配置好SQL的資料庫連接,在代碼中如何調用
首先要添加using System.Configration。
然後利用ConfigrationManager.ConnectinStrings[""].ConnectionString;就可以了。中括弧就是配置文件中的name。
『貳』 ASP.NET如何實現與資料庫連接,怎麼配置數據源
CS文件
string name = this.TextBox1.Text.Trim(); //用戶名
string pwd = this.TextBox2.Text.Trim(); //密碼
string str = ConfigurationManager.ConnectionStrings["SqlConnectionString"].ConnectionString; //獲取web.config中的連接字元串 要導入System.Configuration命名空間
SqlConnection con =new SqlConnection(str);
con.Open();
SqlCommand cmd =new SqlCommand("insert into users[你的用戶表] values (name,pwd)")
int val = com.ExecuteNonQuery();
if(val!=0)
{
//注冊成功!
}
con.Close();
web.config文件 在<configuration>中加入下面內容 <connectionStrings>
add name="SqlConnectionString" connectionString="server=伺服器地址[本地用"."||"localhost"];uid=資料庫用戶;pwd=資料庫密碼;database=資料庫名稱"/>
</connectionStrings>
這樣就可以了,以上代碼是我直接在這里寫的,沒在vs裡面寫。難免會有英文錯誤,只可參考!