Skip to content

Instantly share code, notes, and snippets.

@copenhas
Created February 3, 2011 02:54
Show Gist options
  • Select an option

  • Save copenhas/808959 to your computer and use it in GitHub Desktop.

Select an option

Save copenhas/808959 to your computer and use it in GitHub Desktop.
simple example of trying to keep htmlhelper extensions clean and simple
public static class HtmlHelperExtensions
{
public static PhoneHtmlBuilder<TModel> Phone(this HtmlHelper<TModel> helper)
{
return new PhoneHtmlBuilder<TModel>(helper);
}
//... a bunch of other things
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment