473,395 Members | 1,571 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Date Validation

133 100+
Hi,

How would i change this to check if the date in the field is at least 2 days in front of today's? Must work with this format yyyy-mm-dd

Expand|Select|Wrap|Line Numbers
  1.  
  2.  
  3. if (form.arrivaldate.value == "") {
  4.     alert( "Please make sure your arrival date is at least 2 days in front of today's date" );
  5.     form.arrivaldate.focus();
  6.     return false ;
  7.   }
  8.  
  9.  
Cheers,
Adam
Feb 8 '08 #1
7 1377
scripto
143 100+
I am assuming "in front of" means "before" today's date - yes?

Expand|Select|Wrap|Line Numbers
  1. if (CheckDate(form.arrivaldate.value) == false) {
  2.     alert( "Please make sure your arrival date is at least 2 days in front of today's date" );
  3.     form.arrivaldate.focus();
  4.     return false ;
  5.   }
  6.  
Expand|Select|Wrap|Line Numbers
  1. <script language=vbscript>
  2.  
  3. function CheckDate(sDate)
  4.  
  5.     if DateDiff("d", sDate, Now()) < 2 then
  6.         CheckDate = false
  7.     else
  8.         CheckDate = true
  9.     end if
  10.  
  11. end function
  12.  
  13. </script>
Feb 8 '08 #2
mrhoo
428 256MB
var val='2008/02/7';// date input

Expand|Select|Wrap|Line Numbers
  1. // get todays date and subtract 2 days
  2.  
  3. var d1=new Date();
  4. d1.setDate(d1.getDate()-2);
  5.  
  6. // or 48 hours: d1.setHours(d1.getHours()-48);
  7. // make a date object from the input- 
  8. // this assumes January is input as 1, not 0:
  9.  
  10. var d2= val.split(/\W+/);
  11. d2=new Date(d2[0]*1,d2[1]-1,d2[2]*1);
  12.  
  13. //see if the input is after the limit:
  14.  
  15. if(d2 > d1) alert('bad date')// throw error message
  16. else alert('good date');
Feb 8 '08 #3
acoder
16,027 Expert Mod 8TB
I am assuming "in front of" means "before" today's date - yes?<snip>
Why use vbscript, when JavaScript can do it?

PS. please use code tags.
Feb 9 '08 #4
adamjblakey
133 100+
Hi,

I am trying:

Expand|Select|Wrap|Line Numbers
  1.  var val=(form.arrivaldate.value);// date input 
  2.  
  3.     var d1=new Date();
  4.     d1.setHours(d1.getHours()+48);
  5.  
  6.     // or 48 hours: d1.setHours(d1.getHours()-48);
  7.     // make a date object from the input-
  8.     // this assumes January is input as 1, not 0:
  9.     var d2= val.split(/\W+/);
  10.  
  11.     d2=new Date(d2[0]*1,d2[1]-1,d2[2]*1);
  12.  
  13.     //see if the input is after the limit:
  14.     if(d2 > d1) {
  15.     alert( "Please a date at least 2 days after today's date" );
  16.     form.arrivaldate.focus();
  17.     return false ;
  18.     }
But this does not cover the 2 days after today's date. What this does is goes 2 days ahead and then does not allow any days after this. I need it to work for just the 2 days after today's date.

Any Ideas?

Cheers,
Adam
Feb 11 '08 #5
acoder
16,027 Expert Mod 8TB
d1 is two days after today's date. You need to change the if statement comparison around:
Expand|Select|Wrap|Line Numbers
  1. //see if the input is after the limit:
  2.     if(d2 <= d1) {
Feb 11 '08 #6
adamjblakey
133 100+
Thanks for that, it works fine.
Feb 12 '08 #7
acoder
16,027 Expert Mod 8TB
You're welcome. Glad it helped.
Feb 13 '08 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

30
by: Dr John Stockton | last post by:
It has appeared that ancient sources give a method for Numeric Date Validation that involves numerous tests to determine month length; versions are often posted by incomers here. That sort of code...
0
by: Brian Conway | last post by:
I am having some validation and insertion problems. I am using a date picker that takes the selected date and puts it to ("dd-MMM-yyyy") format, as this was the only format that Oracle would...
7
by: Paul | last post by:
Hi, I have a form where a user is required to enter a start date and an end date. Both are required and must between a specific date range (e.g. 01/01/1900 and 01/01/2099) and the end date...
7
by: James P. | last post by:
Hello there, In my asp.net page using VB, I have a date text field in mm/dd/yyyy format. When a date is entered, I'd like to validate it to make sure the date is greater than or equal to the...
12
by: Diego | last post by:
Can I validate (possibly with a compare validator) a Date entered by the user based upon his regional settings? I.e. if a user is american the format would be mm/dd/yyyy, if brittish dd/mm/yyyy...
1
by: Brendan Reynolds | last post by:
In an ASP.NET 1.1 app I have the following range validation control. This is an intranet app that will be used only within Ireland, so all date input is expected to be in dd/mm/yyyy format. ...
17
by: Petyr David | last post by:
Just looking for the simplest. right now my perl script returns an error messge to the user if the date string is invalid. would like to do this before accessing the server. TX
3
by: =?Utf-8?B?Q2hyaXM=?= | last post by:
I have VS 2005 (C#) There is a control numericUpDown so you can spin numeric values. What I need to do is to spin date (+- one day). How to do that? Moreover, I want a user to type the date as...
2
by: John Smith | last post by:
Hello, I have a VB.NET application with a Windows form that have several textboxes fields where I have dates entered. I would like to do a date validation check after the the field is updated, so...
5
Stang02GT
by: Stang02GT | last post by:
I have been asked to validate a date on our web-page so that people cannot enter dates like 14/1/08 or 2/30/06. I have found code that will do exactly what i need it to do, but i am not sure how to...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.