求教asp中if语句的格式

麻烦大能给看下页面中我的if语句这样写是否正确<tdalign="center"><scriptlanguage="JavaScript"><%dimpicpic=req... 麻烦大能给看下页面中我的if语句这样写是否正确
<td align="center">
<script language = "JavaScript">
<%dim pic
pic=request.QueryString("BigClassID")
if pic="16" then response.Write "<img src='images/1.jpg' width='700' height='165' />"
if pic="24" then response.Write "<img src='images/2.jpg' width='700' height='165' />"
if pic="25" then response.Write "<img src='images/3.jpg' width='700' height='165' />"
else response.Write "<img src='images/4.jpg' width='700' height='165' />"
end if%></script></td>
展开
 我来答
lianbiao190
2015-05-14 · 超过36用户采纳过TA的回答
知道小有建树答主
回答量:107
采纳率:0%
帮助的人:70.2万
展开全部
不对,看你的意思,应该是想写成

if pic="16" then response.Write "<img src='images/1.jpg' width='700' height='165' />"
elseif pic="24" then response.Write "<img src='images/2.jpg' width='700' height='165' />"
elseif pic="25" then response.Write "<img src='images/3.jpg' width='700' height='165' />"
else response.Write "<img src='images/4.jpg' width='700' height='165' />"
end if

如果之前你写的,若pic=16,会执行response.Write "<img src='images/1.jpg' width='700' height='165' />" 和 response.Write "<img src='images/4.jpg' width='700' height='165' />"两条
而且你有三个if只有一个end if 程序都无法正常的执行…………
牌牌网
2015-05-14
知道答主
回答量:32
采纳率:100%
帮助的人:25.1万
展开全部
错误的
正确应该是这样

<%dim pic
pic=request.QueryString("BigClassID")
if pic="16" then response.Write "<img src='images/1.jpg' width='700' height='165' />" else
if pic="24" then response.Write "<img src='images/2.jpg' width='700' height='165' />" else
if pic="25" then response.Write "<img src='images/3.jpg' width='700' height='165' />"
else response.Write "<img src='images/4.jpg' width='700' height='165' />"
end if%></script></td>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式