User-960441985 posted
Thanks A2H for your response. I need to populate DGV DropDown on row edit.
Private Sub dgvSearchResults_RowEditing(sender As Object, e As System.Web.UI.WebControls.GridViewEditEventArgs) Handles dgvSearchResults.RowEditing
dgvSearchResults.EditIndex = e.NewEditIndex
BindGridViewData()
Dim dp123 As DropDownList = CType(dgvSearchResults.Rows(e.NewEditIndex).Cells(2.Controls(7), DropDownList)
'dp123.items.add("dfsdf")
dp123.Items.Add(" ")
dp123.Items.Add("Cloudy")
dp123.Items.Add("Overcast")
dp123.Items.Add("Raining")
dp123.Items.Add("Sunny")
It doesn't work
End Sub