有没有人知道如何根据日期禁用链接。例如,到8月30日,用户无法访问该页面。需要帮助。感谢。
答案 0 :(得分:1)
真的很基本的代码回合你可以做类似的事情
您需要将2009年,08年,30年更改为到期日的年,月,日
Dim theDate : theDate = Now()
Dim Result : Result = false
if Year(theDate) <= 2009 then
if Month(theDate) <= 08 then
if Day(theDate) <= 30 then
Result = true
end if
end if
end if
if Result then
'Date is still valid do your code
else
'Date is NOT valid do your code
end if
答案 1 :(得分:0)