Can it possible to show time in Ajax Calender Control in asp.net ?I have a text-box
which populating calender control but i want to show the calender control should display both date and time.Can anyone suggest me?
Asked
Active
Viewed 6,607 times
1

JOJO
- 306
- 2
- 8
- 27
-
Try using .... [Jquery Date time picker](http://plugins.jquery.com/datetimepicker/) – Jot Dhaliwal Feb 10 '14 at 07:43
-
http://www.ama3.com/anytime/ – Amarnath Balasubramanian Feb 10 '14 at 07:46
-
http://mugifly.github.io/jquery-simple-datetimepicker/ – Vignesh Kumar A Feb 10 '14 at 08:02
2 Answers
1
You can use two calendar controls - one for date and one for time.
Or
You can with the third party Control - Check it Out

Community
- 1
- 1

Amarnath Balasubramanian
- 9,300
- 8
- 34
- 62
0
You can use Date and time picker
<ASP:TextBox runat="server" ID="txtDate"></ASP:TextBox>
<obout:Calendar runat="server"
ShowTimeSelector="true"
DateFormat="MM/dd/yyyy hh:mm:ss"
DatePickerMode="true"
TextBoxId="txtDate">
</obout:Calendar>

Nagaraj S
- 13,316
- 6
- 32
- 53