Hi guys, I am passing a parameter via URL and I want it to be the SelectedValue of my DropDownList.
I tried:
string container = Request.QueryString["container"]; CONTAINER_NUMBER_DROPDOWN.Items.FindByText(container).Selected = true;
But it doesn't work.. any help??