ASP的if语句一般怎么用?说详细点
2个回答
展开全部
1. if..end if
<%
Dim myNum:myNum = 8
If myNum = 8 Then
Response.Write("你输入正确!")
End If
%>
2.if...else...end if
<%
Dim myNum:myNum = 10
If myNum = 10 Then
Response.Write("你输入正坦耐确!")
Else
Response.Write("你输入错误!")
End If
%>
3.if...elseif...else...end if
<%
Dim myNum:myNum = 10
If myNum > 10 Then
Response.Write("大于10")
ElseIf myNum = 10 Then
Response.Write("等档液于10")
Else
Response.Write("小于让蠢春10")
End If
%>
4.嵌套使用
<%
Dim myNum:myNum = 10
if myNum>=0 then
if myNum=0 then
执行语句1
else
执行语句2
end if
else
执行语句3
end if
%>
<%
Dim myNum:myNum = 8
If myNum = 8 Then
Response.Write("你输入正确!")
End If
%>
2.if...else...end if
<%
Dim myNum:myNum = 10
If myNum = 10 Then
Response.Write("你输入正坦耐确!")
Else
Response.Write("你输入错误!")
End If
%>
3.if...elseif...else...end if
<%
Dim myNum:myNum = 10
If myNum > 10 Then
Response.Write("大于10")
ElseIf myNum = 10 Then
Response.Write("等档液于10")
Else
Response.Write("小于让蠢春10")
End If
%>
4.嵌套使用
<%
Dim myNum:myNum = 10
if myNum>=0 then
if myNum=0 then
执行语句1
else
执行语句2
end if
else
执行语句3
end if
%>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
案例:
<%
a=1
if a=1 then
response.write "正确"
else
response.write "错误"
end if
%>
if ***是否成立 then
执行语句
else(否则)
执行另外一种语携腔隐句
end if
可嵌套使用
if a>0 then
if a=1 then
执行圆拦语句1
else
执行语句辩厅2
end if
else
执行语句3
end if
<%
a=1
if a=1 then
response.write "正确"
else
response.write "错误"
end if
%>
if ***是否成立 then
执行语句
else(否则)
执行另外一种语携腔隐句
end if
可嵌套使用
if a>0 then
if a=1 then
执行圆拦语句1
else
执行语句辩厅2
end if
else
执行语句3
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询