AJH.CMS.WEB.UI.Controls.AjaxDate_UC.SetCalendarExtenderValue C# (CSharp) Method

SetCalendarExtenderValue() public method

public SetCalendarExtenderValue ( ) : void
return void
        void SetCalendarExtenderValue()
        {
            try
            {
                string dateTime = txtDate.Text;
                ceDate.SelectedDate = DateTime.ParseExact(txtDate.Text, ceDate.Format, null);
            }
            catch
            {
                ceDate.SelectedDate = null;
            }
        }
        #endregion