熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

asp If Then Else 語法與If Then Else實例教程

2022-06-13   來源: .NET編程 

  if語句一種方法使一個變量或一些其他類型的數據進行決策例如你可能有一個

  腳本來檢查如果布爾值為真或假或變量包含數字或字符串值

  使用if語句執行語句如果邏輯條件為真使用可選的其他條款的執行語句如果

  條件為假對於看起來If語句的語法如下
if condition then
   statements_
else
   statements_
end if
條件可以是任何表達式其值為true或false如果條件計算為真statements_被執

  行否則statements_被執行 statement_和statement_可以是任何聲明包括

  進一步嵌套的IF語句

  您也可以使用復合的聲明elseif有順序測試多個條件您應使用此建築如果您想選擇

  的線路多套一來執行
if condition_ then
   statement_
[elseif condition_ then
   statement_]

[elseif condition_n_ then
   statement_n_]
[else
   statement_n]
end if
讓我們來的例子第一個例子決定學生是否已經通過了一項對個考試及格分數

  Select ActionSelect AllTry It<%@ language="vbscript"%>
<%
Dim Result
Result =

  if Result >= then
    responsewrite("Pass <br />")
else
    responsewrite("Fail <br />")
end if
%>下一個例子使用if語句在elseif變種這讓我們來測試如果第一個其他條件是不

  正確的該計劃將測試每一個序列狀態直至

  它的發現之一是真的在這種情況下執行了這一條件的代碼
它到達一個else語句在這種情況下在執行else語句的代碼
它到達最終如果 elseif else結構在這種情況下移動到下一個發言後

  條件的結構
Select ActionSelect AllTry It<%@ language="vbscript"%>
<%
Dim Result
Result =

  if Result >= then
    responsewrite("Passed: Grade A <br />")
elseif Result >= then
    responsewrite("Passed: Grade B <br />")
elseif Result >= then
    responsewrite("Passed: Grade C <br />")
else
    responsewrite("Failed <br />")
end if
%>


From:http://tw.wingwit.com/Article/program/net/201311/14227.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.