ASP中判断语句
发布网友
发布时间:2023-03-24 03:38
我来回答
共3个回答
热心网友
时间:2023-10-16 04:55
ASP中的判断语句分为:if语句和select语句
1、if语句示例:
最简单示例:
<%
dim a,b
a=200
b=300
if a=b then
response.Write("a等于b")
end if
%>
简单示例:
<%
dim a,b
a=200
b=300
if a=b then
response.Write("a等于b")
else
response.Write("a不等于b")
end if
%>
复杂示例:
<%
dim a,b
a=200
b=300
response.Write("两数之和为:")
response.Write(a+b)
response.Write("<br />")
if a=100 then
response.Write("a=100,第一个条件满足。")
elseif a=200 then
response.Write("a=200,第二个条件满足。")
elseif a=300 then
response.Write("a=300,第三个条件满足。")
else
response.Write("三个条件都不满足。")
end if
%>
2、select语句
<%
dim textnumber
textnumber=200
select case textnumber
case 100
response.Write("数值为100, 条件满足!")
case 200
response.Write("数值为200,条件满足 !")
case 300
response.Write("数值为300 ,条件满足!")
case else
response.Write("以上条件,条件都不满足!")
end select
%>
热心网友
时间:2023-10-16 04:56
<%
if rs("sid")=0 and id>8 then
response.write "<script language=javascript>"&chr(13)&"alert('禁止添加记录!');"&"window.location.href='infoadd.asp'"&"</script>"
response.end
else
if rs("sid")<>0 or id<=8 then
'在这里插入写库语句并更新数据库
end if
end if
%>
热心网友
时间:2023-10-16 04:56
<%
if rs("sid")=0 and id>8 then
'提示不可添加即可
else
’可以提交新内容
end if
%>