|
|
|
C# มีวิธีดึงค่ามาจาก Database แล้วโชว์ ในดรอปดาว (DropDownList) ไหมครับ |
|
|
|
|
|
|
|
บทความนี้ครับ
Code (C#)
//*** DropDownList ***//
this.myDDL1.DataSource = dt;
this.myDDL1.DataTextField = "CountryName";
this.myDDL1.DataValueField = "CountryCode";
this.myDDL1.DataBind();
(C#) ASP.NET DropDownlist & DataBinding
|
|
|
|
|
Date :
2015-04-22 13:05:25 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ไหมครับ
Code (C#)
SqlConnection objConn = new SqlConnection();
string sql = "SELECT * FROM customer WHERE CustomerID = '"+ ["CustomerID"] +"' ";
objConn.Open();
SqlDataAdapter da = new SqlDataAdapter(sql, objConn);
DataSet ds = new DataSet();
da.Fill(ds, "Cus");
comboBox1.DataSource = ds.Tables["Cus"];
comboBox1.DisplayMember = "NAME";
comboBox1.ValueMember = "CustomerID";
|
ประวัติการแก้ไข 2015-04-22 15:16:08
|
|
|
|
Date :
2015-04-22 13:14:08 |
By :
as76157432 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|