I have create a new form with name and date of birth text box in asp.net windows application.
when i enter the date in textbox it will take dd/MM/yyyy format.
how? what i do?
In web application i have used mask edit extender. but in windows application can not be use that?
Loading
Iftikar HussainPosted Aug 8, 2013, 1:28 AM
You can use MaskTextBox like this
But I suggest, you better use DateTimePicker control as you will be not worry weather user has entered correct date value or not. You can use like this
Regards,
Iftikar
Posted Aug 8, 2013, 12:51 AM
Go to MaskEditTextBox property-->in the Mask property enter the below format.
##/##/####
Hope this helps you.