|
|
|
สอบถามเรื่องการใช้ Dropdown list ไปใส่ใน GridView ครับ |
|
|
|
|
|
|
|
ทำแบบนั้นไม่น่าจะได้น่ะครับ ลองทำใน RowDataBound ครับ
Code (C#)
//*** CountryCode ***'
DropDownList ddlCountryCode = (DropDownList)e.Row.FindControl("ddlEditCountryCode");
if ((ddlCountryCode != null)) {
ddlCountryCode.DataSource = (DataTable)DataTableCountryCode();
ddlCountryCode.DataTextField = "CountryName";
ddlCountryCode.DataValueField = "CountryCode";
ddlCountryCode.DataBind();
ddlCountryCode.SelectedIndex = ddlCountryCode.Items.IndexOf(ddlCountryCode.Items.FindByValue((string)DataBinder.Eval(e.Row.DataItem, "CountryCode")));
}
Go to : (C#) ASP.NET GridView Control - DropDownList in GridView
|
|
|
|
|
Date :
2011-07-26 11:48:19 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|