Having a annoying problem with a ASP Page, the DropDowns were not saving their selected values after a PostBack.
Surfing the net, i found this (i cant remember where i sourced it from.
Control c = "Control Not Saving Value";
while ( c != null )
{
Response.Write( c.GetType().Name + " = " + c.EnableViewState.ToString() + "<br/>" );
c = c.Parent;
}