?? ch04-03-01.aspx
字號:
<%@ Page Language="VB" %>
<Html>
<Head>
<Title>編寫第一個ASP.NET程序代碼</TITLE>
</Head>
<Body>
<%
' 聲明變量
' 變量strAuthorName屬于Object數據類型
Dim strAuthorName
' 變量intDefaultSize屬于整數變量
Dim intDefaultSize As Integer
' 變量stFontSizeName屬于具有初始值的字符串變量
Dim strFontName As String = "隸書"
' 常數strTitle是屬于字符串常數
Const strTitle As String = "編寫""第一個 ""ASP.NET 程序"
' 常數strFontColor是屬于字符串常數
Const strFontColor As String = "Purple"
strAuthorName = 10
strAuthorName = "陳峰棋"
intDefaultSize = 5
Response.Write ("<Font Face = " & strFontName & " Size = " & _
intDefaultSize & " Color = " & strFontColor &">")
Response.Write ("標題文字 :" & strTitle & "<BR>")
Response.Write ("作者 :" & strAuthorName & "<BR>")
Response.Write ("默認中文字體:" & strFontName & "<BR>")
Response.Write ("默認字號:" & intDefaultSize & "<BR>")
Response.Write ("</Font>")
%>
</Body>
</Html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -