When selecting the date and time with a custom DateTimePicker (https://tempusdominus.github.io/bootstrap-4/Usage/). When the submit button is clicked 9 out of 10 times the date and time is this :
01/01/0001 00:00:00
Code on the Razor page :
<div class="form-group row">
<label class="col-sm-2 col-form-label">Date and time :</label>
<div class="col-sm-4">
<div class="input-group date" id="datetimepicker1" data-target-input="nearest">
<input asp-for="IncidentDateAndTime" type="text" class="form-control datetimepicker-input" data-target="#datetimepicker1" />
<div class="input-group-append" data-target="#datetimepicker1" data-toggle="datetimepicker">
<div class="input-group-text"><i class="fa fa-calendar"></i></div>
</div>
</div>
</div>
</div>
The script on the same page :
$(function () {
$('#datetimepicker1').datetimepicker();
});
The imports on the same page :
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.0/moment-with-locales.js"></script>
<script src="https://rawgit.com/tempusdominus/bootstrap-4/master/build/js/tempusdominus-bootstrap-4.min.js"></script>
<link href="https://rawgit.com/tempusdominus/bootstrap-4/master/build/css/tempusdominus-bootstrap-4.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
When clicking on the button to select a date and time the current date and time is set :
If this is set the value is this when I submit :
01/01/0001 00:00:00