473,804 Members | 3,462 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Date Validation

133 New Member
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 1383
scripto
143 New Member
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 Contributor
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 Recognized Expert Moderator MVP
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 New Member
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 Recognized Expert Moderator MVP
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 New Member
Thanks for that, it works fine.
Feb 12 '08 #7
acoder
16,027 Recognized Expert Moderator MVP
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
3699
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 seems unnecessarily long. For some while, the following approach has been given here :- function ValidDate(y, m, d) { // m = 0..11 ; y m d integers, y!=0
0
1997
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 accept on an insert, however, when it does a comparision validation it is failing. I have StartDate = comparing to an invisible textbox that contains todays date EndDate = comparing to StartDate needing to be >= SetupDate = comparing to StartDate...
7
10311
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 cannot preceed the start date. How can I perform the necessary validation using the least number of validation controls. For example is it necessary that I add a requiredfieldvalidator for the start date field and end date field to make sure a value...
7
31846
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 current date. If not, I'd like to display the error message to ValidationSummary. It seems to make sense to me to use CompareValidator but the problem is put the current date into CompareValidator. So, I created a hidden text field in my aspx. ...
12
3292
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 Thanks, Diego.
1
4705
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. <asp:RangeValidator id="varngRollCallDate" runat="server" ErrorMessage="Please enter a valid date in 'dd/mm/yyyy' format." ControlToValidate="txtDate" Display="Dynamic" Type="Date" MinimumValue="01/01/2006" MaximumValue="31/12/2006"...
17
5288
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
2859
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 well. So the control should validate the typed values on the fly. Is it possible?
2
6747
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 I' using the leave event. Right now I am creating a 'leave' sub for each of the fields. However, I'd like to simplify that and just call the name of a function and plug the field name as a variable and be done. In other words, I would like...
5
3447
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 call it. It was suggested to be to have it run through an if statement and if the user enters an invalid date it will kick them to an error page. Here is the date validation code. // date validation using SimpleDateFormat // it will take a...
0
9710
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10593
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10329
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10085
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9163
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5527
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5663
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4304
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3000
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.