Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC 3 Custom HTML Helpers- Best Practices/Uses

New to MVC and have been running through the tutorials on the asp.net website.

They include an example of a custom html helper to truncate long text displayed in a table.

Just wondering what other solutions people have come up with using HTML helpers and if there are any best practices or things to avoid when creating/using them.

As an example, I was considering writing a custom helper to format dates that I need to display in various places, but am now concerned that there may be a more elegant solution(I.E. DataAnnotations in my models)

Any thoughts?

EDIT:

Another potential use I just thought of...String concatenation. A custom helper could take in a userID as input and return a Users full name... The result could be some form of (Title) (First) (Middle) (Last) depending on which of those fields are available. Just a thought, I have not tried anything like this yet.

like image 492
stephen776 Avatar asked Jan 26 '11 13:01

stephen776


People also ask

What is the use of HTML helpers in MVC?

In MVC, HTML Helper can be considered as a method that returns you a string. This string can describe the specific type of detail of your requirement. Example: We can utilize the HTML Helpers to perform standard HTML tags, for example HTML<input>, and any <img> tags.

What is custom HTML helpers in MVC?

HTML Custom Helpers HTML helper is a method that returns a HTML string. Then this string is rendered in view. MVC provides many HTML helper methods. It also provides facility to create your own HTML helper methods. Once you create your helper method you can reuse it many times.

What is the important advantage of using HTML helper and linking the model property to it?

HTML helpers make our work easy. With plain HTML, it takes a huge pile of efforts to bind our model properties with the form elements but with HTML helpers, we take advantage of strongly typed things. We see the IntelliSense in the View, which reduces a lot of our time and efforts.

What is the purpose of HTML helper class?

The HtmlHelper class renders HTML controls in the razor view. It binds the model object to HTML controls to display the value of model properties into those controls and also assigns the value of the controls to the model properties while submitting a web form.


1 Answers

I use HtmlHelpers all the time, most commonly to encapsulate the generation of boilerplate HTML, in case I change my mind. I've had such helpers as:

  • Html.BodyId(): generates a conventional body id tag for referencing when adding custom css for a view.
  • Html.SubmitButton(string): generates either an input[type=submit] or button[type=submit] element, depending on how I want to style the buttons.
  • Html.Pager(IPagedList): For generating paging controls from a paged list model.
  • etc....

One of my favorite uses for HtmlHelpers is to DRY up common form markup. Usually, I have a container div for a form line, one div for the label, and one label for the input, validation messages, hint text, etc. Ultimately, this could end up being a lot of boilerplate html tags. An example of how I have handled this follows:

public static MvcHtmlString FormLineDropDownListFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression, IEnumerable<SelectListItem> selectList, string labelText = null, string customHelpText = null, object htmlAttributes = null) {     return FormLine(         helper.LabelFor(expression, labelText).ToString() +         helper.HelpTextFor(expression, customHelpText),         helper.DropDownListFor(expression, selectList, htmlAttributes).ToString() +         helper.ValidationMessageFor(expression)); }  public static MvcHtmlString FormLineEditorFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression, string templateName = null, string labelText = null, string customHelpText = null, object htmlAttributes = null) {     return FormLine(         helper.LabelFor(expression, labelText).ToString() +         helper.HelpTextFor(expression, customHelpText),         helper.EditorFor(expression, templateName, htmlAttributes).ToString() +         helper.ValidationMessageFor(expression)); }  private static MvcHtmlString FormLine(string labelContent, string fieldContent, object htmlAttributes = null) {     var editorLabel = new TagBuilder("div");     editorLabel.AddCssClass("editor-label");     editorLabel.InnerHtml += labelContent;      var editorField = new TagBuilder("div");     editorField.AddCssClass("editor-field");     editorField.InnerHtml += fieldContent;      var container = new TagBuilder("div");     if (htmlAttributes != null)         container.MergeAttributes(new RouteValueDictionary(htmlAttributes));     container.AddCssClass("form-line");     container.InnerHtml += editorLabel;     container.InnerHtml += editorField;      return MvcHtmlString.Create(container.ToString()); }  public static MvcHtmlString HelpTextFor<TModel, TProperty>(this HtmlHelper<TModel> helper, Expression<Func<TModel, TProperty>> expression, string customText = null) {     // Can do all sorts of things here -- eg: reflect over attributes and add hints, etc... }     

Once you've done this, though, you can output form lines like this:

<%: Html.FormLineEditorFor(model => model.Property1) %> <%: Html.FormLineEditorFor(model => model.Property2) %> <%: Html.FormLineEditorFor(model => model.Property3) %> 

... and BAM, all your labels, inputs, hints, and validation messages are on your page. Again, you can use attributes on your models and reflect over them to get really smart and DRY. And of course this would be a waste of time if you can't standardize on your form design. However, for simple cases, where css can supply all the customization you need, it works grrrrrrrrreat!

Moral of the story -- HtmlHelpers can insulate you from global design changes wrecking hand crafted markup in view after view. I like them. But you can go overboard, and sometimes partial views are better than coded helpers. A general rule of thumb I use for deciding between helper vs. partial view: If the chunk of HTML requires a lot of conditional logic or coding trickery, I use a helper (put code where code should be); if not, if I am just outputting common markup without much logic, I use a partial view (put markup where markup should be).

Hope this gives you some ideas!

like image 135
spot Avatar answered Sep 22 '22 01:09

spot