随笔 - 20  文章 - 7  trackbacks - 0
<2025年5月>
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

常用链接

留言簿(1)

随笔档案

文章分类

文章档案

积分与排名

  • 积分 - 20212
  • 排名 - 1716

最新评论

<%@ page language="vb" %>
<h1>条件判断语句嵌套结构</h1>
<%
Dim blnA as boolean=false, blnB as boolean=true
If blnA=true Then
       response.write(
"blnA的值为true<br>"
  
If blnB=true Then
    response.write(
"blnB的值为true<br>")
  
Else
    response.write(
"blnB的值为false<br>")
  
End If
Else
   response.write(
"blnA的变量值为false<br>")
End if 
%
>
posted on 2006-02-06 21:31 The Game, tomtom 阅读(300) 评论(0)  编辑  收藏 所属分类: VB.NET流程控制