Hi scbreezy,
Please refer below query
JQuery
<script type="text/javascript">
$(document).ready(function () {
$("#<%=TextBox1.ClientID %>").dynDateTime({
ifFormat: "%Y/%m/%d %H:%M",
daFormat: "%l;%M %p, %e %m, %Y",
align: "BR",
electric: false,
singleClick: false,
displayArea: ".siblings('.dtcDisplayArea')",
button: ".next()"
});
});
</script>
Refering below article
Implement DateTimePicker in ASP.Net using jQuery Plugin
You need to remove line so that time is not visible for you
showsTime: true
Hope this works for you