相关代码 |
|
Select...Case条件判断语句 Select...Case条件判断语句 ' 声明一个整数变量,并初始化初始值 Dim intA As Integer =1 ' 在这里设置 intA 变量的值 ' intA = 3 Select Case intA Case 1 Response.Write("intA 变量的值等于 1") Case 2 Response.Write("intA 变量的值等于 2") Case Else Response.Write("intA 变量的值大于 2 或小于 1 ") End Select %>
相关资源 |
|