Skip to content

Instantly share code, notes, and snippets.

@jbosse
Created December 16, 2010 19:28
Show Gist options
  • Save jbosse/743855 to your computer and use it in GitHub Desktop.
Save jbosse/743855 to your computer and use it in GitHub Desktop.
ControlExtensions.cs
public static class ControlExtensions
{
public static T Find<T>(this Control control, string id) where T : Control
{
return (T) control.FindControl(id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment