I am trying to implement the jQuery datetimepicker in my ASP.NET webpage.
Followed the link http://www.projectcodegen.com/JQueryDateTimePicker.aspx
I am trying to implement the sample in my code.
- I did add the js and the css files to my application.
The pop-up calender with time is not displayed when I run the application.
<link rel="Stylesheet" href="jquery.ui.datetimepicker.css" type="text/css" />
<script src="Scripts/jquery.ui.datetimepicker.js" type="text/javascript"></script>
<script src="Scripts/jquery.ui.datetimepicker.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('TextBox1').datetimepicker();
});
</script>
<body>
<form id="form1" runat="server">
<div>
<input type="text" id="TextBox1" />
</div>