|
|
You can validate the entered date in two ways:
1. Client-Side: Use a RequiredFieldValidator to check whether the user left the date blank or not. (e.g. leave the TextBox empty and click Submit)
2. Server-Side: Check whether the user typed a valid date or date. (e.g. type some garbage into the TextBox and click Submit)
|