首页后端开发ASP.NETASP中if语句、select 、while循环的使用方法

ASP中if语句、select 、while循环的使用方法

时间2024-02-07 17:53:03发布访客分类ASP.NET浏览379
导读:收集整理的这篇文章主要介绍了ASP中if语句、select 、while循环的使用方法,觉得挺不错的,现在分享给大家,也给大家做个参考。 <%@LANGUAGE="vbSCRIPT...
收集整理的这篇文章主要介绍了ASP中if语句、select 、while循环的使用方法,觉得挺不错的,现在分享给大家,也给大家做个参考。
%@LANGUAGE="vbSCRIPT" CODEPAGE="936"%>
    !DOCTYPE htML PubLIC "-//W3C//DTD XHTML 1.0 TransITional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    html XMlns="http://www.w3.org/1999/xhtml">
    head>
    meta http-equiv="Content-Type" content="text/html;
     charset=gb2312" />
    title>
    %="页面标题"%>
    /title>
    /head>
    body>
    %="多条件判断"%>
    %response.Write("br />
    ")response.Write("利用response对象的Write方法输出地内容!")%>
    br />
    %dim a,ba=200b=300response.Write("两数之和为:")response.Write(a+b)response.Write("br />
    ")if a=100 thenresponse.Write("a=100,第一个条件满足。")elseif a=200 thenresponse.Write("a=200,第二个条件满足。")elseif a=300 thenresponse.Write("a=300,第三个条件满足。")elseresponse.Write("三个条件都不满足。")end if%>
    %response.Write("br />
    ")dim textnumbertextnumber=200select case textnumber case 100 response.Write("数值为100, 条件满足!") case 200 response.Write("数值为200,条件满足 !") case 300 response.Write("数值为300 ,条件满足!") case else response.Write("以上条件,条件都不满足!") end select%>
    %response.Write("br />
    ")dim i,sumi=0sum=0 while i=100 sum=sum+i i=i+1wendresponse.Write("100以内所有整数的和为:")response.Write(sum)%>
    %response.Write("br />
    ")dim w,sw=0s=0do s=s+ww=w+1loop while w=100response.Write("100之内的所有整数之和为:")response.Write(s)response.Write("br/>
    ")response.Write("w的值是:")response.Write(w)%>
    /body>
    /html>
    

具体的介绍就不多说了,大家看下实例就可以了

考虑后期的便于阅读,小编再为大家整理一下

asp if语句

①if A then B

②if A then

B

end if

③if A then

B

else

C

end if

④if A then

B

elseif C then

D

end if

⑤if A then

B

elseif C then

D

else

E

end if

If....Then.....Else

在下面的情况中,您可以使用 If...Then...Else 语句:
在条件为 true 时,执行某段代码
选择两段代码之一来执行时
如果需要在条件为 true 时只执行一行语句,可以把代码写为一行:
if i=10 Then msgbox "Hello"
在上面的代码中,没有 .else.. 语句。我们仅仅让代码在条件为 true 时执行一项操作(当 i 为 10 时)。
假如我们需要在条件为 true 时执行不止一条语句,那么就必须在一行写一条语句,然后使用关键词 "End If" 来结束这个语句:

if i=10 Then  msgbox "Hello"  i = i+1end If

在上面的代码中,同样没有 .else.. 语句。我们仅仅让代码在条件为 true 时执行了多项操作。
假如我们希望在条件为 true 时执行某条语句,并当条件不为 true 时执行另一条语句,就必须添加关键词 "Else":

if i=10 then  msgbox "Hello"else  msgbox "Goodbye"end If

当条件为 true 时会执行第一段代码,当条件不成立时执行第二段代码(当 i 不等于 10 时)。
If....Then.....Elseif
假如你希望选择多套代码之一来执行,可以使用if...then...elseif语句:

if payment="Cash" then  msgbox "You are going to pay cash!" elseif payment="Visa" then  msgbox "You are going to pay with visa." elseif payment="amEx" then  msgbox "You are going to pay with American ExPress." else  msgbox "Unknown method of payment."end If

Select Case
假如你希望选择多套代码之一来执行,可以使用 SELECT 语句:

select case payment case "Cash"  msgbox "You are going to pay cash" case "Visa"  msgbox "You are going to pay with visa" case "AmEx"  msgbox "You are going to pay with American ExPRess" case Else  msgbox "Unknown method of payment"end select

以上代码的工作原理:首先,我们需要一个简单的表达式(常常是一个变量),并且这个表达式会被做一次求值运算。然后,表达式的值会与每个 case 中的值作比较,如果匹配,被匹配的 case 所对应的代码会被执行。

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!


若转载请注明出处: ASP中if语句、select 、while循环的使用方法
本文地址: https://pptw.com/jishu/604365.html
asp的SQL语句中and和or同时使用的注意事项 ASP中用select case代替其他语言中的switch case, default用case else

游客 回复需填写必要信息