Click here to Skip to main content
15,890,370 members
Articles / Web Development / HTML

How To Create Custom HTML Helper in ASP.NET MVC? Here Is The Way.

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
22 Apr 2016CPOL2 min read 12.8K  
A way to create custom HTML helper in ASP.NET MVC

In this article, I will explain how to create a custom HTML helper as per your requirement.

If you know the MVC and Helpers already, you can skip the next paragraph and if you don't know, here is an explanation about helpers.

What are HTML Helpers in MVC?

  • An HTML helper is a method that is used to render the specified html content in View. It can be implemented as an extension method.
  • If you know the ASP.NET webforms, you might know the concept of web controls. e.g. <asp:TextBox /><asp:label /> If you use these controls in web form on browsers, they will converted to their equivalent HTML controls like TextBox will be <input type="text" /> and label will be <span></span>
  • HTML helpers methods are the same as web controls it allows to render appropriate HTML in view.

Let's take an example of how HTML helper looks like:

HTML
@Html.TextBox("Myname","Mayur Lohite")

This HTML helper will render the following HTML in view.

HTML
<input type="text" name="Myname" id="Myname" value="Mayur Lohite" />

The MVC provides a rich set of HTML helpers, e.g. @html.TextBox(), @Html.TextArea(), @Html.CheckBox(), etc. but if you take a closer look in HTML Helpers, there is no helper present for Image tag i.e. <img src="" />

So in this tutorial, we will create our own custom helper for <img src="" /> tag

So we have to achieve something like:

HTML
@Html.MyImage("~/Image/mayur.jpg","Mayur Lohite" />

So, it will generate the following HTML.

HTML
<img src="/Image/mayur.jpg" alt="Mayur Lohite" />

If you take a closer look at @Html in view, it is a property of HtmlHelper class. Right click on @Html in view and click on Go to Definition. You will get the following output.

Image 1

Now to create custom HTML helper, we need to create extension method of HtmlHelper class. So we can access our custom method by @Html property.

How to Create an Extension Method for HtmlHelper Class?

  • We have to create a static method in static class.
  • First parameter has to be the type to which we are adding the extension method. In our case, it is HtmlHelper Class.
  • Return type should be IHtmlString, as these strings are excluded from html encoding.
  • To create HTML tag, we have to use TagBuilder class
  • Include the namespace of the helper method in view or web.config

Here is the code:

C#
namespace MyMVCApp.CustomHtmlHelpers
{
    public static class CustomHtmlHelpers
    {
        public static IHtmlString MyImageHelper(this HtmlHelper helper, string src, string alt)
        {
            TagBuilder tb = new TagBuilder("img");
            tb.Attributes.Add("src", VirtualPathUtility.ToAbsolute(src));
            tb.Attributes.Add("alt", alt);

            return new MvcHtmlString(tb.ToString(TagRenderMode.SelfClosing));
        }
    }
}

So we have created our Extension method. Now it's time to call it in our view. The following code will give you an idea of how we can call it on view.

Here is the view:

HTML
@using MyMVCApp.CustomHtmlHelpers;

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>Custom Helper</title>
</head>
<body>
    <div>
        @Html.MyImage("~/Images/mayur.jpg", "Mayur Lohite")
    </div>
</body>
</html>

Conclusion

The MVC provides us the flexibility to create our own HTML helpers by using an extension method of HtmlHelper class. We can develop the custom HTML helper as per the requirement, e.g., for image, some widgets, etc.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
My name is Mayur Lohite. I am Programmer and Web Developer also I am Interested in Web Application Security and penetration. From a young age I’ve been fascinated with building web application and breaking it. So I have choose the Information technology as my career and completed the Degree in Information technology.

I’m a interested in operating and design of large-scale web applications/infrastructure and I’m interested in web application security also I am interested in some networking setting up servers, domains experimenting with clouds(well I am not professional at it)

I am a big fan of Anime series (Naruto) and also love to playing games. In the mean time I love to watching movies specially action movies.

Now I’m a white hat penetration tester. bug hunter and all out security freak by profession and passion. I’ve listed many websites Hall of fame e.g. Microsoft, Yahoo, Apple, Adobe

Comments and Discussions

 
-- There are no messages in this forum --