![]() |
|
|
|||||||
![]() |
ASP Net - Does CompareValidator work for the date in dd-mmm-yyyy format? |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
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 =?Utf-8?B?Q3liZXJMb3R1cw==?= |
|
|
|
|
#2 |
|
Posts: n/a
|
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 > =?Utf-8?B?QmFyZW4=?= |
|
|
|
#3 |
|
Posts: n/a
|
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 "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 > > =?Utf-8?B?Q3liZXJMb3R1cw==?= |
|
|
|
#4 |
|
Posts: n/a
|
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: Creator of "Professional Validation And More" at http://www.peterblum.com/vam/home.aspx "CyberLotus" <> wrote in message news:1B776E4F-B8A0-49CC-9A40-... > 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 > Peter Blum |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Why No One Wins in the High-Def Format War | Ablang | DVD Video | 50 | 11-04-2007 04:19 AM |
| As growth slows, Hollywood faces a DVD standoff. | Allan | DVD Video | 0 | 07-11-2005 02:10 PM |
| requesting a hand up - read for your Mom [short message with Quotes] | Miss Marple | DVD Video | 1 | 03-17-2005 10:07 PM |
| High Definition and the future of viewing. | Allan | DVD Video | 3 | 03-09-2005 12:56 AM |
| NYTimes: Next Video Format | robert gray | DVD Video | 12 | 01-01-2004 10:42 AM |