public static T FindControl<T>(this Control control, string controlId) where T : Control
{
return (T)control.FindControl(controlId);
}