Hi Thomas Moore,
Thanks for using Syncfusion products,
We have analyzed your sample. To get the value from control, using ID, we can use the code as like in below code example. Here the Value property need to be represent with proper casing(Value) since it’s a case sensitive one.
So, to get the value of control in code behind, please use txtArrive.Value as like in below code example.
<ej:DateTimePicker ID="txtArrive" TimePopupWidth="150" TimeDisplayFormat="h:mm tt" Width="280px"DateTimeFormat="MM/dd/yyyy h:mm tt" Interval="5" runat="server"></ej:DateTimePicker>
|
protected void Page_Load(object sender, EventArgs e)
{
DateTime? str = txtArrive.Value;
}
|
Please let us know if you have further queries,
Regards,
Prem Kumar Madhan Raj.