|
.net
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Does CompareValidator work for the date in dd-mmm-yyyy format?Hi,
I wish to validate the date a user has entered against the format dd-mmm-yyyy using the CompareValidator, but it does not work. Does anybody have a simple solution please? Many thanks in advance. Regards, Cyberlotus Hi!
I think you can use a RegularExpressionValidator with ValidationExpression="\d{2}-\d{2}-\d{4}" Thanks, Baren Show quoteHide quote "CyberLotus" wrote: > Hi, > > I wish to validate the date a user has entered against the format > dd-mmm-yyyy > using the CompareValidator, but it does not work. > > Does anybody have a simple solution please? > > Many thanks in advance. > > Regards, > Cyberlotus > Hi Baren,
Thanks for the quick response. But RegularExpressionValidator will validate the date with the given format. But I want to compare between 2 dates with the given format. More elabrately, I have 2 textboxes. One is storing "From date" in dd-mmm-yyyy format and the other one is storing "To date" in dd-mmm-yyyy format. Now I want to compare these 2 dates and if "To date" is less than the "From date" I wish to throw an error. Please help me in achieving this. Thanks a lot. Regards, Cyberlotus Show quoteHide quote "Baren" wrote: > Hi! > I think you can use a RegularExpressionValidator with > ValidationExpression="\d{2}-\d{2}-\d{4}" > > Thanks, > Baren > > "CyberLotus" wrote: > > > Hi, > > > > I wish to validate the date a user has entered against the format > > dd-mmm-yyyy > > using the CompareValidator, but it does not work. > > > > Does anybody have a simple solution please? > > > > Many thanks in advance. > > > > Regards, > > Cyberlotus > > Hi CyberLotus,
The CompareValidator and RangeValidator offer the Type=Date property setting. However, its limited to "short date patterns". That means the month is represented by 2 digits, not by text, which is what "mmm" means. You have two choices: 1. Whenever the built in validators don't do the job, use the CustomValidator and write the logic yourself. The DateTime.ParseExact() method will help you convert to the format you want. You probably will have to live without the client-side version unless you are prepared to do a lot of javascript coding. 2. My Peter's Date Package (http://www.peterblum.com/datecontrols/home.aspx) has a DateTextBox that supports the abbreviated month format. You establish a short date pattern in the xDateTimeFormatInfo property like "dd-MM-yyyy" and dateseparator = "-". (Note that I wrote two Ns in the short date pattern). Then you set the xAllowMonthNames property to "Show". (After you download the free trial version, locate these properties in the User's Guide for details.) Next, you use the validators I supply, which includes a Compare validator for this formatting. --- Peter Blum www.PeterBlum.com Email: PLB***@PeterBlum.com Creator of "Professional Validation And More" at http://www.peterblum.com/vam/home.aspx Show quoteHide quote "CyberLotus" <CyberLo***@discussions.microsoft.com> wrote in message news:1B776E4F-B8A0-49CC-9A40-23432F2E5168@microsoft.com... > Hi, > > I wish to validate the date a user has entered against the format > dd-mmm-yyyy > using the CompareValidator, but it does not work. > > Does anybody have a simple solution please? > > Many thanks in advance. > > Regards, > Cyberlotus >
Other interesting topics
Session State stateserver or Sql Server
Did I do this correctly? - Display resized image from DB. Munging URLs to store data <Head>Tag PostBack problem 2.0 App-Code Folder Support for 'Code-Behind' HttpWebRequest.GetResponse on POST returns 405 method not allowed Render and get html from usercontrol OnPreRender ??? What is ? somebody help me answer this? |
|||||||||||||||||||||||