Hello
I have this control
<div> </div> <div> [DisplayFormat(DataFormatString = "{0:dd/MM/yyyy}",ApplyFormatInEditMode = true)]</div> <div> [Required(ErrorMessage = "Captura este campo")]</div> <div> public DateTime?
BirthDate { get; set; }</div> <div></div> <div><div class="row">
<div class="col-md-12">
<div class="form-group">
<label asp-for="BirthDate" class="control-label"></label>
<input asp-for="BirthDate" asp-format="{0:dd/MM/yyyy}" class="form-control" />
<span asp-validation-for="BirthDate" class="text-danger"></span>
</div>
</div>
</div></div> <div></div> <div>I want to ask only for Date and not the hours and the minutes, how can i do this ?</div>