how can i get the selected value from a dropdownlist which is in a listview , from the DropDownList_SelectedIndexChanged event? i have always had problem with finding controls in the page :-)
    foreach (ListViewItem item in CouncilListView.Items)
    {
        CouncilIdLabel = (Label)item.FindControl("CouncilIdLabel");
    }
it just pass all the items and i don't know how to get out of the foreach when reach the wanted control.