listing0304.aspx
来自「asp入门到精通的源代码」· ASPX 代码 · 共 22 行
ASPX
22 行
<%@ Page Language="VB" %>
<script runat="server">
sub Page_Load(obj as object, e as eventargs)
dim MyMessage As String = "Hello"
dim MyBool As Boolean = True
'if-statement 1
if MyMessage = "Hello" then
Response.Write("True")
end if
'if-statement 2
if MyBool then
Response.Write("True")
end if
end sub
</script>
<html><body>
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?