if語句一種方法
腳本來檢查
使用if語句
條件為假
if condition then
statements_
else
statements_
end if
條件可以是任何表達式
行
進一步嵌套的IF語句
您也可以使用復合的聲明elseif有順序測試多個條件
的線路多套一來執行
if condition_
statement_
[elseif condition_
statement_
[elseif condition_n_
statement_n_
[else
statement_n]
end if
讓我們來的例子
Select ActionSelect AllTry It<%@ language="vbscript"%>
<%
Dim Result
Result =
if Result >=
response
else
response
end if
%>下一個例子使用if語句在elseif變種
正確的
它的發現之一是真的
它到達一個else語句
它到達最終如果
條件的結構
Select ActionSelect AllTry It<%@ language="vbscript"%>
<%
Dim Result
Result =
if Result >=
response
elseif Result >=
response
elseif Result >=
response
else
response
end if
%>
From:http://tw.wingwit.com/Article/program/net/201311/14227.html