What is the advantage of using Tag Helpers in ASP.Net MVC 6
Apologized that I am not very good in asp.net mvc that I would like to confess. I just come across a good write up for asp.net 5 new feature from this url . From there I heard about a term called Tag Helpers in ASP.Net MVC 6 and I saw there people say before developer create form this below way: @model MyProject.Models.Product @using (Html.BeginForm()) { <div> @Html.LabelFor(m => p.Name, "Name:") @Html.TextBoxFor(m => p.Name) </div> <input type="submit" value="Create" /> } and now people can code the same with tag helper the below way @model MyProject.Models.Product @addtaghelper "Microsoft