showquote.aspx

来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 25 行

ASPX
25
字号
<%@ Import Namespace="myComponents" %>

<Script Runat="Server">

Sub Page_Load
  Dim myQuote As New Quote

  lblOutput.Text = myQuote.ShowQuote()
End Sub

</Script>

<html>
<head><title>ShowQuote.aspx</title></head>
<body>

And the quote is...
<br>
<asp:Label
  id="lblOutput"
  Runat="Server" />

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?