Hi, I have below which only allows me to change the date, not the time.
<div class="col-md-10">
<input asp-for="Date" class="form-control" />
<span asp-validation-for="Date" class="text-danger"></span>
</div>
How do I make it allow for time change as well as date?
Thanks,