get all the drop down list id and value from place holder c#
// Retrieve the selected product options string options = ""; foreach (Control cnt in Place.Controls) { /* if (cnt is Label) { Label attrLabel = (Label)cnt; options += attrLabel.Text; } */ if (cnt is DropDownList) { ...