asp 里面多次用IF 语句判断怎么写呢?

‘下面是功能是判断返还来的数字需要判断是否移动、联通、电信如果不是就是返还其他。<%hd=RS("HaoDuan")ifhd=134orhd=135orhd=136orh... ‘下面是 功能是判断返还来的数字 需要判断是否 移动、联通、电信 如果不是就是返还其他。

<%
hd=RS("HaoDuan")
if hd=134 or hd=135 or hd=136 or hd=137 or hd=138 or hd=139 or hd=150 or hd=151 or hd=152 then
Response.Write("移动")
else
if hd=130 or hd=131 or hd=132 or hd=155 or hd=156 or hd=185 or hd=186 or hd=176 then Response.Write("联通")
.........(上面应该正确的,这边就不知道怎么写了,望补充,比如要判断 if hd=189 then Response.Write("电信") else if逻辑混乱 额)

end if
%>
<%
hd=RS("HaoDuan")
if hd=134 or hd=135 then
Response.Write("移动")
else
if hd=130 or hd=131 then Response.Write("联通")
else
if hd=189 or hd=180 then
Response.Write("电信")
else
Response.Write("其他")
end if
%>
程序会出错,不知道怎么回事
展开
 我来答
百度网友3cb80af
2014-11-17 · TA获得超过9535个赞
知道大有可为答主
回答量:1.2万
采纳率:83%
帮助的人:3936万
展开全部
可以
if hd=134 then
response.write"移动"

elseif hd=130 then
response.write"联通"

elseif hd=189 then
response.write"电信"
end if

条件,自己补充,,,如果134这些数字不是数字,那用双引号引上,,用做字符串对比。。

意思是如果 条件 就

否则再如果 条件 就

否则再如果 条件就

否则

结束如果。
追问
会出错,奇怪。 不知道哪里问题,代码都在问题补充那边。后面那段。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
育知同创教育
2016-03-01 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部
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
%>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yfcp
2014-11-17 · 知道合伙人软件行家
yfcp
知道合伙人软件行家
采纳数:1748 获赞数:5545
有多年网站建设相关工作经验。熟悉ASP、ASP.net、VB、JavaScript、HTML等语言和CSS、Ajax等相关技术。

向TA提问 私信TA
展开全部
<%
    hd=RS("HaoDuan")
    if hd=134 or hd=135 or hd=136 or hd=137 or hd=138 or hd=139 or hd=150 or hd=151 or hd=152 then
        Response.Write("移动")
    elseif hd=130 or hd=131 or hd=132 or hd=155 or hd=156 or hd=185 or hd=186 or hd=176 then
        Response.Write("联通")  
    elseif hd=189 then
         Response.Write("电信")
    else
        response.wrtie "其他"
end if 
%>

 elseif 是一个整体。看好下面的格式:

if  XXX then

    '============

elseif XXX  then

     '============

elseif  XXX  then

     '============

else

     '============

end if

追问
按照这个会出错,如果用 switch? 要怎么写。

加下面这个会出错。
elseif hd=189 then
Response.Write("电信")
else
response.wrtie "其他"
追答
不可能会出现的,上面代码都给你写好了。
你把出错信息贴出来。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式