Search Results

1
vote

Javascript: how to validate dates in format MM-DD-YYYY?

You can simplify it somewhat by changing the first two lines of the function to this: var matches = this.match(/^([0-9]{2})\/([0-9]{2})\/([0-9]{4})$/); Or, just ch …
1
vote

CompareValidator inside an UpdatePanel - VS2008

You could turn off client-side validation for that Validator. EnableClientScript="false" This would mean a round-trip to the server to report an invalid state, tho …