Ask a Question related to ASP.NET General, Design and Development.
-
Null #1
date validation?
How to write an IsDate function that actually checks for a particular date
format?
Using try-catch on Convert.ToDateTime(sDate) doesn't catch invalid entry
(i.e. 5/2000).....I want the dates to be input as mm/dd/yyyy OR m/d/yyyy OR
m/d/yy (etc.)....
Any thoughts?
Null Guest
-
[PHP] Date Validation, Kinda'
Now that I'm thinking about it, what is your goal with this? Is it to make sure the date entered is within a certain range when compared to another... -
combo box date validation
Hi, As per our requirement, we need to put combo boxess for date input. we are giving the user to input as dd month year format from the given... -
Date Validation
I'm trying to find some Coldfusion code that will allow me to validate a date to make sure that it's in MM/DD/YY format and is actually a valid... -
Date Range Validation
Hello; CL_FRST (08/10/2004) and CL_LST (05/24/2005) holds the beginning and ending date of school calendar which is also prepopulated for every... -
Date Validation, Kinda'
Howdy, Has anyone written any date validation function or sequence. I have looked around, but haven't found anything. I am cobbling togather... -
Alvin Bruney #2
Re: date validation?
a regex would come in handy here [url]http://regexlib.com/[/url]
or do a cheesy
System.DateTime myDateTime = DateTime.Parse(testString);
and check myDateTime for validity. I prefer regex though
"Null" <farthumstill@hotmail.com> wrote in message
news:uX9w69LVDHA.1316@TK2MSFTNGP12.phx.gbl...OR> How to write an IsDate function that actually checks for a particular date
> format?
>
> Using try-catch on Convert.ToDateTime(sDate) doesn't catch invalid entry
> (i.e. 5/2000).....I want the dates to be input as mm/dd/yyyy OR m/d/yyyy> m/d/yy (etc.)....
>
> Any thoughts?
>
>
Alvin Bruney Guest



Reply With Quote

