HTML Helper in MVC
HTML Helper supports in MVC in ASP.NET. It is an easy way to create control or HTML to help render HTML controls in an MVC application.
HTML Helper is one of the class and using System.Web.Mvc.Html Namespace. HTML Helper class is insight into the System.Web.Mvc.Html Namespace.
There is a different type of HTML helper.
- Inline HTML Helper.
- Built-in HTML Helper.
- Standard Html Helper.
- Strongly Typed Html Helper.
- Template Html Helper.
- Custom HTML Helper.Syntax for Html HelperHtml It is a helper class.
- @Html.TextBox(“txtFirstName”)
- @ For Razor view engine.
TextBox Which controller needs.txtFirstName Id of controller name.

Vignesh ManiPosted Jul 24, 2015, 8:19 AM
Nice one