As we know that in asp.net mvc if we use
@HtmlTextbox("t1",Model.val)
then it will create html output as
<input type="text" value="Value of val in Model"/>
but rather using htmlhelpers
in asp.net mvc if I directly use
<input type="text" value="@Model.val"/>
So which is better using htmlhelpers
or directly html tags in asp.net mvc