1. 程式人生 > >C#如何以TEXTBOX控制元件中輸入的內容查詢資料庫其他內容

C#如何以TEXTBOX控制元件中輸入的內容查詢資料庫其他內容

查詢加上條件即可。
SqlConnection cn = new SqlConnection();
cn.ConnectionString = "server=.;database=yourdb;uid=sa;pwd=pwd";
cn.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = cn;
cmd.CommandText = "select regdate from yourtable where [email protected]";
cmd.Parameters.AddWithValue("@no",textBox1.Text.Trim());
var date = cmd.ExecuteScalar();
cn.Close();
if(date!=System.DBNull.Value )
{
this.textBox2.Text = date.ToString();
}