textbox.aspx
来自「asp.net技术内幕的书配源码」· ASPX 代码 · 共 42 行
ASPX
42 行
<%@ Page Inherits="System.Web.UI.MobileControls.MobilePage" %>
<Script Runat="Server">
Sub Command_Click( s As Object, e As EventArgs )
lblContactName.Text = txtContactName.Text
lblContactPhone.Text = txtContactPhone.Text
ActiveForm = frmDisplayContact
End Sub
</Script>
<Mobile:Form id="frmAddContact" runat="Server">
<b>Name:</b>
<Mobile:Textbox
ID="txtContactName"
Runat="Server"/>
<br/>
<b>Phone:</b>
<Mobile:Textbox
ID="txtContactPhone"
Runat="Server"/>
<br/>
<Mobile:Command
Text="Submit!"
OnClick="Command_Click"
Runat="Server" />
</Mobile:Form>
<Mobile:Form id="frmDisplayContact" runat="Server">
<b>You Entered:</b>
<br/>
<Mobile:Label
ID="lblcontactName"
Runat="Server"/>
<br/>
<Mobile:Label
ID="lblContactPhone"
Runat="Server"/>
</Mobile:Form>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?