3

Possible Duplicate:
ASP.NET DateTime Picker

Is there any default control name DateTimePicker available in asp.net ? I want a single control which have both date and time select functionality.please suggest me one? Thanks

Community
  • 1
  • 1
saurabh goyal
  • 1,754
  • 8
  • 35
  • 45

5 Answers5

5

Or you could use the JQuery option:

JQueryDateTimePicker

David Morton
  • 16,338
  • 3
  • 63
  • 73
  • Thats exactly what i want .It has also the nice short explanation of how to implement it . Thanks David – saurabh goyal Jun 30 '11 at 17:24
  • 1
    link is down. i would recommend this: http://www.aspsnippets.com/Articles/DateTimePicker-in-ASP.Net-GridView-using-jQuery-DateTimePicker-Plugin.aspx – owen gerig Nov 02 '12 at 14:43
4

Asp.NET doesn't have a lot of OTB options when it comes to Date/Time pickers. If you're using JQuery (which, you should) check out this TimePicker extension to DatePicker.

Brandon Moretz
  • 7,512
  • 3
  • 33
  • 43
1

Use Below :

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Calendar/Calendar.aspx

Saurabh
  • 5,661
  • 2
  • 26
  • 32
0

No, you can use AJAX control DatePicker which hooks onto a Text box.

Jethro
  • 5,896
  • 3
  • 23
  • 24
0

By default ASP.Net doesn't provide a datetime picker.

Usually people develop their own controls in Javascript. In .Net you can create your own composite control with date and time pick ability.

Otherwise you may go for some free .Net/JS controls provided by 3rd parties. There are many vendors providing date picker control.

SaravananArumugam
  • 3,680
  • 6
  • 33
  • 45