ASP .NET TextBox 控制項

來源:互聯網
上載者:User

ASP .NET TextBox 控制項

TextBox控制項用於建立一個文字框,使用者可以輸入文字。

TextBox控制項
TextBox控制項用於建立一個文字框,使用者可以輸入文字。

TextBox控制項的屬性和屬性中列出我們的網路控制參考網頁。

下面的例子表明一些屬性你可以使用的TextBox控制項:

例如

A TextBox with text:
<asp:TextBox id="tb4" Text="Hello World!" runat="server" />
<br /><br />

A multiline TextBox:
<asp:TextBox id="tb3" TextMode="multiline" runat="server" />
<br /><br />

A TextBox with height:
<asp:TextBox id="tb6" rows="5" TextMode="multiline"
runat="server" />
<br /><br />

添加指令碼
內容和設定的一個TextBox控制項可以改變伺服器指令碼的形式提交。表單提交可以通過點擊一個按鈕或當使用者改變了價值的TextBox控制項。

在下面的例子中,我們宣布一個TextBox控制項,一個Button控制項,和一個Label控制項中。 aspx檔案。當提交按鈕被觸發,提交子程式執行。提交副程式寫了一個文字的標籤控制:

<script runat="server">Sub submit(sender As Object, e As EventArgs)lbl1.Text="Your name is " & txt1.TextEnd Sub</script>
<html><body>
<form runat="server">Enter your name:<asp:TextBox id="txt1" runat="server" /><asp:Button OnClick="submit" Text="Submit" runat="server" /><p><asp:Label id="lbl1" runat="server" /></p></form>
</body></html>

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.