According to W3Schools an input does not have ex tag closing
<input type="text" name="firstname" value="Mickey">
source: link
In my ASP.NET MVC project I have the following command
@Html.TextBoxFor(model => model.Erro, new { @class = "form-control" })
The rendering result is
<input class="form-control" id="Erro" name="Erro" type="text" value="" />
Should not the result be as below?
<input class="form-control" id="Erro" name="Erro" type="text" value="">
Is there any configuration to be made in ASP.NET, update, anything to render according to HTML5?