'*** 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