Click here to Skip to main content
15,888,521 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
How can i include TimePicker in asp.net?

Is it possible through Javascript or Jquery in asp.net?

Please help me.
Posted
Updated 7-Sep-17 23:10pm

 
Share this answer
 
Comments
Sergey Alexandrovich Kryukov 15-Oct-13 16:05pm    
Ah, there is something to chose from, a 5. (In my answer, I referenced just two, please see.)
—SA
Joezer BH 16-Oct-13 2:55am    
5ed!
Please look at those referenced in my past answers:
DateTimePicker Web Control[^],
TextBox allow only (HH:mm tt) format using asp.net[^].

—SA
 
Share this answer
 
Why not, you can add datepicker in your project of asp.net, In any WebForm inlcude all files given in demo of date picker, demos of jquery are available online on http://www.jqueryui.com.

Download jqueryui package and follow instruction given in demo. You have to use an ID in text box where you want to display datepicker and using this id, in javascript file you have to select and apply date picker like this,

JavaScript
$(function(){
  $("#idOfTextbox").datepicker();
});
 
Share this answer
 
Try this. Timepicker
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900