Hi everyone, I'm going to start with a new experience with dotnet core using the MVC pattern.
Which are the new helpers for checkbox, textarea and other?
In this moment the relative page is empty : https://learn.microsoft.com/en-us/aspnet/core/mvc/views/html-helpers
I've tried this :
<input asp-for="myField" class="form-control" type="checkbox" value="False"/> but doesn't work!
Thanks in advance.
<div class="form-group"> <label asp-for="myField" class="col-md-2 control-label"></label> <div class="col-md-10"> @*<input asp-for="myField" class="form-control" type="checkbox" value="False"/>*@ <span asp-validation-for="myField" class="text-danger"></span> </div> </div>