ขออธิบายก่อนคือ DDL ดึงของมูลมากจาก table unit
ส่วนขอมูลในตารางดึงมาจาก table item
**********************************************************************************************************************
***********************************************************
รูปที่ 1 ก่อนกดปุ่มแก้ไข ใน row 1 Column unit value = g
**********************************************************************************************************************
'*** CountryCode ***'
Dim ddlCountryCode As DropDownList = CType(e.Row.FindControl("ddlEditCountryCode"), DropDownList)
IF Not IsNothing(ddlCountryCode) Then
With ddlCountryCode
.DataSource = DataTableCountryCode
.DataTextField = "CountryName"
.DataValueField = "CountryCode"
.DataBind()
End With
ddlCountryCode.SelectedIndex = ddlCountryCode.Items.IndexOf(ddlCountryCode.Items.FindByValue(e.Row.DataItem("CountryCode")))
End IF
ASP.NET GridView Control - DropDownList in GridView