If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Difference between 2 date

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-08-04, 19:43
michaelfg81 michaelfg81 is offline
Registered User
 
Join Date: Mar 2004
Posts: 202
Difference between 2 date

Hi there,

i need to key in a date into to text box which look like below

From ________ To_______ : "_________" = text box

then of course the first text box cant be the date greater than the second one rite.
so how do i determine it in asp form?
Thanx
Reply With Quote
  #2 (permalink)  
Old 06-08-04, 19:46
Seppuku Seppuku is offline
Useless...
 
Join Date: Jul 2003
Location: SoCal
Posts: 721
Use DateDiff()

Code:
If DateDiff("d", StartDate, EndDate) < 0 Then
  'End date is before the start date - show error
Else
  'Start date is before the end date (or the same day) - continue processing
End If
__________________
That which does not kill me postpones the inevitable.
Reply With Quote
  #3 (permalink)  
Old 06-09-04, 01:25
rokslide rokslide is offline
Registered User
 
Join Date: Nov 2003
Location: Christchurch, New Zealand
Posts: 1,617
you could probably also try....
Code:
If CDate(StartDate) > CDate(EndDate) Then
  'End date is before the start date - show error
Else
  'Start date is before the end date (or the same day) - continue processing
End If
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On