使用ASP classic,我需要以某种方式相互比较两个日期。我怎样才能做到这一点?

最佳答案

Date1 = #rs["date"]#
Date2 = #12/1/2009#


If DateDiff("d", Date1, Date2) > 1 Then
    response.write "This date is before 12/1/2009"
Else
    response.write "This date is after 12/1/2009"
End If


高温超导

关于date - 如何在vbscript/ASP中比较两个日期?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2327169/

10-12 13:24