Hi I have a fucntion that takes the name of a DropDownList as a string parameter but I need to use the string to reference a DropDownList ie:
Code:
void populateDropDownList (string dropDownListName) {
dropDownListName.Items.Add(new ListItem("some","thing"));
}