1
<%
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 个条件?

4

3 回答 3

3

我认为您正在寻找的逻辑运算符And在这种情况下:

if ((i = 1) And (j = 1)) then
于 2013-10-22T13:52:20.837 回答
1

运营商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

于 2013-10-22T13:51:57.110 回答
0

试试这个

if ((i=1) and (j=1)) then
于 2013-10-22T13:52:54.663 回答