DropDownList

  • Thread starter Thread starter Random
  • Start date Start date
R

Random

I'm creating a DropDownList within a DataGrid column. The page will not
allow me to create my own ID and name for the control. How can I reference
the value on a PostBack if I cannot give it an ID?
 
You need to iterate through the DataGrid.Items collection and then call
FindControl using its design time ID to get the dropdown list.
 
Back
Top