---
title: "What are Html helpers?"  
description: "What are Html helpers?"  
author: "Manish Kumar"  
published: 2017-11-15  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/23309/what-are-html-helpers  
category: "c#"  
tags: ["asp.net mvc", "mvc"]  
reading_time: 1 minute  

---

# What are Html helpers?

Mvc HTML helpers are the methods which returns HTML strings.There are few inbuilt HTML helpers which we can use.we can also create our custom HTML helpers.They are similar to the webforms controls as both the webforms controls and the MVC HTML helpers returns HTML.

Mvc HTML helpers are lightweight compared to the webforms controls.

these are some of the commonly used HTML helper methods for rendering the HTML form elements

- BeginForm()
- EndForm()
- TextArea()
- TextBox()
- CheckBox()
- RadioButton()
- DropDownList()
- Hidden()
- Password()

## Answers

### Answer by Manish Kumar

Mvc HTML helpers are the methods which returns HTML strings.There are few inbuilt HTML helpers which we can use.we can also create our custom HTML helpers.They are similar to the webforms controls as both the webforms controls and the MVC HTML helpers returns HTML.

Mvc HTML helpers are lightweight compared to the webforms controls.

these are some of the commonly used HTML helper methods for rendering the HTML form elements

- BeginForm()
- EndForm()
- TextArea()
- TextBox()
- CheckBox()
- RadioButton()
- DropDownList()
- Hidden()
- Password()


---

Original Source: https://www.mindstick.com/interview/23309/what-are-html-helpers

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
