Tag Helpers - Self closing HTML tags is a bad habit?
问题 I am incorporating TagHelpers in my MVC vNext project, and I realized they don't work when I self close the HTML tags. @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" <label asp-for="FirstName"/> <!-- self closing tag --> <span asp-validation-for="FirstName"/> <!-- self closing tag --> And, insteand when I put the closing tags, I see the values being displayed. <label asp-for="FirstName"></label> <span asp-validation-for="FirstName"></span> Generated HTML <label for="FirstName">FirstName<