在我的ASP頁面,我寫這樣的代碼檢查日期驗證如何檢查當前日期是否大於結束日期?
<%
'Session 1
session.lcid=2057
Session("CheckIn")= "26/12/2009"
d=0
response.write session("CheckIn")&"----"&DateAdd("d",d,Session("CheckIn")) &"<br/>"
if session("CheckIn")= DateAdd("d",d,Session("CheckIn")) then
response.write "Session 1 is workings"
end if
'Session 2
a ="26/12/2009"
b ="26/12/2009"
if a=b then
response.write "Session 2 is workings"
end if
%>
在會議1「如果」條件是行不通的。 但如果我在會話2中以字符串格式寫入日期,則「IF」條件正在工作。
我如何檢查「IF」條件會議1我在傳統的ASP頁面
希望您的回覆,
非常感謝loooooooooooooot – Alex 2009-12-19 09:32:24