I have an asp:table with 2 columns. Col 1 holds an employee number, and col 2 holds a drop-down list of codes.
If the user selects a new code from the drop-down list, the SelectedIndexChanged event fires and, within that event, I can look at the SelectedValue to see what the new code is - but how do I know what table row I'm on? How do I reference back to the table from within the SelectedIndexChanged event to determine the row number that fired the event?
If the user selects a new code from the drop-down list, the SelectedIndexChanged event fires and, within that event, I can look at the SelectedValue to see what the new code is - but how do I know what table row I'm on? How do I reference back to the table from within the SelectedIndexChanged event to determine the row number that fired the event?