Welcome to the dBforums forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact support.

If you prefer not to see double-underlined words and corresponding ads, place your cursor
here for ContentLink opt out.

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, 20: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, 20: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, 02:25
rokslide rokslide is offline
Coffee Minion
 
Join Date: Nov 2003
Location: Sydney
Posts: 1,515
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

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