随笔 - 20  文章 - 7  trackbacks - 0
<2025年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

常用链接

留言簿(1)

随笔档案

文章分类

文章档案

积分与排名

  • 积分 - 20195
  • 排名 - 1715

最新评论

<%@ 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流程控制