ASP.NET: What's the best way to validate 3 drop downs boxes that are used to select a date (month, d
- by Josh
I have two sets of drop downs for start date and end date. Each date is created by selecting a month, day, and year from 3 separate drop downs. I currently have RequiredFieldValidators on all the drop downs (which just shows a * if nothing has been selected yet), but I need to validate that the end date is greater than the start date. I can take…