Infragistics controls will actually manage the data type for you so you do not run into this as when you use the inherited .NET controls. All of the Infragistics controls have a value property that is typed as the expected value. So when you are dealing with dates, it forces proper entry when using their UltraDateTimeEdit web control. If you do a GetType() of the value property you will see it is typed as a DateTime rather than a string. So you will use the IBusinessBindable interface and bind to the Value property rather than the Text property which will resolve most of your problems.So in short, yes, Infragistics will automatically strip these types of characters that are causing you problems when you use their Value property on the control.