Hello.
I currently have a textbox with an inbuilt popup calendar. When I select a date it is populated and saved into a database. I want to add a dropdownlist to this textbox such that after the selection of the date, I can select time from a dropdown list and
this date-time value is saved into the database.
ASPX:
<asp:TextBox ID="txtStartDate" runat="server" />
<ajaxToolkit:CalendarExtender ID="CalendarExtender3" runat="server" TargetControlID="txtStartDate" />
Start Time:
<asp:DropDownList ID="DropDownList5" runat="server">
<asp:ListItem>12 00 AM</asp:ListItem>
<asp:ListItem>12 30 AM</asp:ListItem>
<asp:ListItem>1 00 AM</asp:ListItem>
<asp:ListItem>1 30 AM</asp:ListItem>
...
Go to the complete details ...