1

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?

JOJO
  • 306
  • 2
  • 8
  • 27

2 Answers2

1

You can use two calendar controls - one for date and one for time.

enter image description here

Source

Or

You can with the third party Control - Check it Out

Check this too.!!

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>    

ASP.NET Calendar - Date and time picker

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