I need to do some basic validation on a date, things like validating that the date is greater than today, validating that the date is real (i.e. "99/99/9999"), etc. Basically, I need to emulate what .NET does with DateTime.TryParse.
Is there anything like that in jQuery? Or would I be better off making an AJAX call to validate the date in C#?