Home All Groups Group Topic Archive Search About

Does CompareValidator work for the date in dd-mmm-yyyy format?

Author
10 Jun 2005 6:01 AM
CyberLotus
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

Author
10 Jun 2005 6:23 AM
Baren
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
>
Are all your drivers up to date? click for free checkup

Author
10 Jun 2005 6:57 AM
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
> >
Author
10 Jun 2005 4:37 PM
Peter Blum
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
>

Bookmark and Share