Using ASP.Net & C#
I want to use a datetimepicker in my web page, i cannot find the control, How to get a datetime picker control in the web page.
Can any provide a sample code.
Need C# code Help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t mind of using jQuery you can just use a textbox and covert it into a Date and time picker with jQuery.
more explanation on how to use on the jQuery site:
http://plugins.jquery.com/project/timepicker-addon
Just include 3 javascript references to the page
the use the plugin as shown in the code below
EDIT: (added urls to the javascript files)
the Javascript files can be downloaded from the urls below:
http://trentrichardson.com/examples/timepicker/js/jquery-1.4.2.min.js
http://trentrichardson.com/examples/timepicker/js/jquery-ui-1.8.custom.min.js
http://trentrichardson.com/examples/timepicker/js/jquery-ui-timepicker-addon-0.5.min.js
EXTRA EXAMPLE: