|
|
|
เครื่องหมาย & กับ AND ต่างกันยังไงเหลอครับในภาษา ASP ต้องการเปรียบเทียบค่าแบบ Between |
|
|
|
|
|
|
|
แบบนี้ใช้ได้ เปรียบเทียบแบบ Between ได้
Code
<%
request_date="25/6/2012"
below="26"&"/"&(Month(DateAdd("m",-d,request_date)))&"/"&Year(DateAdd("m",-d,request_date))
above="25"&"/"&(Month(DateAdd("m",-d+1,request_date)))&"/"&Year(DateAdd("m",-d+1,request_date))
if (request_date >= below & request_date <= above) then invoice="get receipt"
%>
แบบนี้ใช้ไม่ได้ แต่ถ้าไม่เปรียบเทียบแบบ Between ก็ใช้ได้ปกติ
Code
<%
request_date="25/6/2012"
below="26"&"/"&(Month(DateAdd("m",-d,request_date)))&"/"&Year(DateAdd("m",-d,request_date))
above="25"&"/"&(Month(DateAdd("m",-d+1,request_date)))&"/"&Year(DateAdd("m",-d+1,request_date))
if (request_date >= below AND request_date <= above) then invoice="get receipt"
%>
ขอบคุณครับ
Tag : ASP
|
|
|
|
|
|
Date :
2012-06-27 12:01:06 |
By :
imperator |
View :
2209 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|