我正在尝试使用Input(text)控件/ jQueryUI将日期存储到数据库中,因为在Visual Studio 2017中我的工具箱中没有datetimepicker。我的HTML代码如下:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$("#datepicker").datepicker();
});
</script>
<input id="datepicker" class="auto-style7" type="text" />
从我的C#代码中,我认为问题出在这里:
SqlCommand cmd = new SqlCommand(insertQuery, con);
cmd.Parameters.AddWithValue("@ApplyDate", datepicker.Value.Date);
datepicker.Value.Date
说在这种情况下不存在日期选择器。我该如何解决?