如何判断Classic ASP中某个特定年份和月份是否存在?

时间:2011-03-23 15:06:35

标签: asp-classic

在Classic ASP中,我如何获得表示某一年和月份未来的真值或假值?

1 个答案:

答案 0 :(得分:3)

你可以试试这个,假设你不知道月份的那一天。

dateToTest = CDate(givenYear & "-" & givenMonth & "-" & "01")

inthefuture = dateToTest > now()