标签: asp-classic
在Classic ASP中,我如何获得表示某一年和月份未来的真值或假值?
答案 0 :(得分:3)
你可以试试这个,假设你不知道月份的那一天。
dateToTest = CDate(givenYear & "-" & givenMonth & "-" & "01") inthefuture = dateToTest > now()