textbox.aspx

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

ASPX
43
字号
<%@ Page Inherits="System.Web.UI.MobileControls.MobilePage" Language="C#" %>
<script language="C#" runat=server>

void Command_Click( object s, EventArgs e )
{
  lblContactName.Text = txtContactName.Text;
  lblContactPhone.Text = txtContactPhone.Text ;
  ActiveForm = frmDisplayContact;
}

</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 + -
显示快捷键?