Hello all,
I have two textboxes, each contain a time (textboxA / textboxB). I need to be able to validate that textboxA is before textboxB.
For exmaple:
- textboxA = 10:30 / textboxB = 12:30 VALIDATION = true
- textboxA = 10:30 / textboxB = 10:00 VALIDATION = false
I would prefer to do the checks using server-side controls.
Thanks in advance for any help.
Clare