I'm trying to keep these questions seperate for people searching after me, so sorry if there is so many.I have the following code on SelectedIndexChange of GridView1HFCustomerID.Value = GridView1.Rows(GridView1.SelectedIndex).Cells(6).Text.ToString()I have a drop down list that you can choose values from, and depending on which item you pick GridView1 changes, this all works correctly, and if I select one of the rows the SelectedIndex changes. My problem occurs when you choose a different value from the drop down list, GridView1 Changes accordingly, and by default a record is selected. But selectedindexchange is never fired again until I manually select another record from the gridview which is a problem.Any Ideas? Am I putting this code in the incorrect place?
View Complete Post