vbscript之流程控制語句

流程控制語句
如下用實例來演示流程控制語句中的循環語句與條件語句:
條件語句:if ...else
如下爲引用內容:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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=utf-8" />
<title> 實例演示流程控制語句中的條件語句 </title>
</head>
<body>

<% dim a,b
a=100
b=98
fx=a+b
%>
<% if fx>180 then
response.write "成績優秀"
else
response.write "繼續努力"
end if
%>

</body>
</html>
循環語句:for
如下爲引用內容:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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=utf-8" />
<title> 實例演示流程控制語句中的循環語句 </title>
</head>
<body>

<%
for a=1 to 10
response.write "好好學習<br/>"
next
%>

</body>
</html>
相關文章
相關標籤/搜索