dropdownlist ดึงข้อมูลจากฐานข้อมูลค่ะ แต่อยากให้อันแรก โชว์ โปรดเลือกข้อมูล ก่อนแล้วโชว์ข้อมูลค่ะ asp.net c#
Insert Item เข้าไปใหม่ครับ
Code (PHP)
//*** Add & Insert New Item ***//
String strText,strValue;
//*** Insert Item ***//
strText = "";
strValue = "";
ListItem InsertItem = new ListItem(strText, strValue);
myDDL4.Items.Insert(0, InsertItem);
Go to : (C#) ASP.NET DropDownlist and DataBinding
Date :
2011-05-26 14:14:50
By :
webmaster
Code (C#)
string _query = "SELECT * FROM dbDefineWorkType where WorkGroup= '" + workg + "' and FlagClassified='" + flag + "' ";
SqlDataAdapter da2 = new SqlDataAdapter(_query, Conn2);
DataSet ds2 = new DataSet();
da2.Fill(ds2);
this.DropDownList1.DataSource = ds2;
this.DropDownList1.DataTextField = "WorkDes";
this.DropDownList1.DataValueField = "WorkCode";
this.DropDownList1.DataBind();
this.DropdownList1.text="กรุณาเลือกข้อมูลค่ะ"; /****----***\ เพิ่มบรรทัดนี้เข้าไปล่างสุดนะครับ อิอิ............
Date :
2011-05-26 15:18:29
By :
woraponc
ฟ้อง error ค่ะ คุณ woraponc
does not contain a definition for 'DropdownList1' and no extension method 'DropdownList1' accepting a first argument of type 'MTAOWeb.view.pages.AO_2' could be found
Date :
2011-05-26 19:00:02
By :
mushroomsn
ว่าแต่ทำมัยไม่ใช้เป็น combobox ล่ะครับ อันนี้ตัวอย่างของผมนะครับให้ select ค่าออกมาจากตาราง unit field แรกชื่อ UnitID ส่วน field ที่สองชื่อ UnitName ครับ ลองเอาไปประยุกต์ใช้ดูนะครับ
Code (C#)
private void ShowUnit()
{
sb = new StringBuilder();
sb.Remove(0, sb.Length);
sb.Append("SELECT * FROM unit");
string sqlUnit;
sqlUnit = sb.ToString();
com = new OdbcCommand();
com.CommandText = sqlUnit;
com.CommandType = CommandType.Text;
com.Connection = Conn;
dr = com.ExecuteReader();
if (dr.HasRows)
{
DataTable dtUnit = new DataTable();
dtUnit.Load(dr);
cmbUnit.BeginUpdate();
cmbUnit.DisplayMember = "UnitName";
cmbUnit.ValueMember = "UnitID";
cmbUnit.DataSource = dtUnit;
cmbUnit.text ="xxxxxxxx"; //***/// บรรทัดนี้แหละครับต้องการให้แสดงอารายก็ใส่เข้าไปครับ ///**
cmbUnit.EndUpdate();
}
}
ประวัติการแก้ไข 2011-05-27 09:17:31
Date :
2011-05-27 09:15:34
By :
woraponc
5555+ พิมพ์ครับผม ขอโทษครับ
Date :
2011-05-27 15:42:48
By :
woraponc
Load balance : Server 04