0 votes
in C Sharp by

What are HTML helpers in MVC?

1 Answer

0 votes
by

In MVC HTML Helpers is a class which are used in views to render/display HTML controls like links, TextBox, TextArea, etc.

HTML Helper Example in MVC

@Html.ActionLink("Create New", "create")

The above example generates an HTML link something like <a href="/create">Create New</a>

Related questions

0 votes
asked Aug 18, 2019 in MVC Language by rahulsharma
0 votes
asked Aug 18, 2019 in MVC Language by rahulsharma
...