<%
i=1
j=1
if ((i=1) && (j=1)) then
response.write("i = 1 and j =1")
else
response.write("i <> 0")
end if
%>
我用.asp
扩展保存这个。这里的if
条件不起作用。如何在if
经典 ASP 代码条件下检查 2 个条件?
<%
i=1
j=1
if ((i=1) && (j=1)) then
response.write("i = 1 and j =1")
else
response.write("i <> 0")
end if
%>
我用.asp
扩展保存这个。这里的if
条件不起作用。如何在if
经典 ASP 代码条件下检查 2 个条件?
我认为您正在寻找的逻辑运算符And
在这种情况下:
if ((i = 1) And (j = 1)) then
运营商and
并非&&
如此,将您的代码更改为:
<%
i=1
j=1
if ((i=1) and (j=1)) then
Response.Write("i = 1 and j =1")
else
Response.Write("i <> 0")
end if
%>
我 = 1 和 j = 1
试试这个
if ((i=1) and (j=1)) then