Click here to Skip to main content
15,889,216 members
Articles / Web Development / ASP.NET

ASP.NET MVC HTML Helpers – A MUST KNOW

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
8 Jul 2014CPOL2 min read 26.4K   5   1
ASP.NET MVC HTML helpers

What are HTML Helpers in ASP.NET MVC?

Think of HTML Helper in ASP.NET MVC as a method returning a string. So, what can that string be? The returning string is basically an HTML string that can render a HTML tag. For example, a link, an image or other form elements.

Developers who have worked with ASP.NET Web Forms can map HTML helper to Web Form Controls because both serve the same purpose. But HTML helpers are comparatively lightweight because they don’t have view state and event model like Web Form Controls. Along with the built in HTML helpers, we can also create our own custom helpers to fulfill our specific needs.

What Standard HTML Helpers Render?

For ASP.NET MVC developers, understanding of standard HTML Helpers is highly desirable. Standard HTML Helpers can be categorized as follows:

  • URL Helpers
    • HTML Links
    • Image Links
  • HTML Form Elements

MVC URL Helpers

Rendering a link in HTML is a very common requirement. There are two different types of URL Helpers available in ASP.NET MVC, i.e., for HTML Links and Image Links. Let’s discuss both of them one by one.

1. HTML Links

Html.ActionLink() Helper is used to render an HTML link in a View. ActionLink() method actually links to a Controller action from inside a View.

HTML
@Html.ActionLink("Web Development Tutorial Company Profile", "CompanyInfo")

The above line of code is an example of Html.ActionLink() method that renders an HTML anchor tag and linking to a Controller action “CompanyInfo” in a View as follows:

HTML
<a href="/Site/CompanyInfo">Web Development Tutorial Company Profile</a>

2. Image Links

In order to generate an Image Link, Url.Action() helper is available.

HTML
<a href="@Url.Action("ViewDetails")">
<img src="../Images/ViewDetails.jpg" alt="View Details"></a>

Note: Although Image Link is doing almost the same thing, i.e., linking to a Controller action “ViewDetails” and rendering an HTML anchor tag with additional image. But we can’t use Html.ActionLink() helper for this purpose because Html.ActionLink() helper, by default, expects link text to encode, so we can’t pass an <img> tag to it.

For ASP.NET MVC Interview Questions and Answers for Beginners as well as Experienced developers, click here.

MVC HTML Form Elements

In order to render HTML Form elements, ASP.NET MVC provides a number of HTML helpers as follows:

HTML
@Html.TextBox("strStudentName") renders:

<input id="strStudentName" name="strStudentName" type="text" value="" />

@Html.TextArea("strAcademicBackground", "", 10, 50, null) renders:

<textarea cols="50" id="strAcademicBackground" 
name="strAcademicBackground" rows="10">

@Html.Password("strPassword") renders:

<input id="strPassword" name="strPassword" type="password" />

@Html.RadioButton("radGender", "Male", true) renders:

<input checked="checked" id="radGender" 
name="radGender" type="radio" value="Male" />

@Html.CheckBox("chkDuesPaid", true) renders:

<input checked="checked" id="chkDuesPaid" 
name="chkDuesPaid" type="checkbox" value="true" />
<input name="chkDuesPaid" type="hidden" value="false" />

@Html.DropDownList ("ddlLevel", new SelectList(new [] 
{"1st Grade", "2nd Grade", "3rd Grade"})) renders:

<select id="ddlLevel" name="ddlLevel">
     <option>1st Grade</option>
     <option>2nd Grade</option>
     <option>3rd Grade</option>
</select>

In a later post on this blog, we will explore how to create our own Custom HTML Helper for ASP.NET MVC application.

Other Related Articles

The post ASP.NET MVC HTML Helpers – A MUST KNOW appeared first on Web Development Tutorial.

License

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


Written By
Software Developer (Senior) Emaratech
United Arab Emirates United Arab Emirates
Imran Abdul Ghani has more than 10 years of experience in designing/developing enterprise level applications. He is Microsoft Certified Solution Developer for .NET(MCSD.NET) since 2005. You can reach his blogging at WCF Tutorials, Web Development, SharePoint for Dummies.

Comments and Discussions

 
GeneralNice Pin
Thin July25-Feb-15 16:32
professionalThin July25-Feb-15 16:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.