this might be easy, maybe not:
I have a form (well, several) with a date range (drop-downs for month, day, year) and in the .asp based page used to preview the form, i assemble the three drop-down Request.Form values to create a string that looks just like a date in format dd/mm/yyyy.. Obviously it would be good to validate the data from the form before processing to make sure people don’t give a higher date range in the FROM than in the TO date fields (which are drop-down boxes on the .html form). Does ASP recognize a pattern like dd/mm/yyyy. as anything in particular, such that I can test for one date being more recent than the other? or do I need to do some Javascript validation first? — say, in the .html page?