---
title: "How many types of HTML Helpers in MVC ?"  
description: "How many types of HTML Helpers in MVC ?"  
author: "Anonymous User"  
published: 2019-10-14  
updated: 2019-10-14  
canonical: https://www.mindstick.com/forum/105416/how-many-types-of-html-helpers-in-mvc  
category: "asp.net mvc"  
tags: ["c#", "asp.net mvc", "mvc"]  
reading_time: 1 minute  

---

# How many types of HTML Helpers in MVC ?

Types of [HTML Helpers](https://www.mindstick.com/blog/589/html-helpers-in-mvc) in [MVC](https://www.mindstick.com/forum/155803/define-cache-profile-in-mvc)

## Replies

### Reply by Anonymous User

**[HTML](https://www.mindstick.com/articles/1530/design-a-simple-stylish-calculator-using-html-css-and-javascript) Helpers are categorized into three types**:

1. Inline HTML Helpers
2. Built-in HTML Helpers
3. Custom HTML Helpers

Here, we will describe to Built-In HTML Helpers. We will see Inline and Custom HTML Helpers in the up coming article of this series.

## Built-in HTML Helpers are further divided into three categories:

1. Standard HTML Helpers
2. Strongly Typed HTML Helpers
3. Templated HTML Helpers

##### If we say this in a few words, which is as follows -\
\
The following is the list of Html Helper controls.

- Html.Beginform
- Html.EndForm
- Html.Label
- Html.TextBox
- Html.TextArea
- Html.Password
- Html.DropDownList
- Html.CheckBox
- Html.RedioButton
- Html.ListBox
- Html.Hidden

##### Below are Strongly Type Html Helper methods, this will allow us to check compile-time errors. We get the Model's Property intelligence at Runtime.

- Html.LabelFor
- Html.TextBoxFor
- Html.TextAreaFor
- Html.DropDownListFor
- Html.CheckBoxFor
- Html.RadioButtonFor
- Html.ListBoxFor
- Html.HiddenFor


---

Original Source: https://www.mindstick.com/forum/105416/how-many-types-of-html-helpers-in-mvc

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
