| | | Single Line asp:TextBox (VB.net) |
|
|
<%@ Page Language="vb" %>
<html>
<head>
<title>Input Control Example</title>
<script runat="server">
Sub Page_Load()
SingleText.Text = "Hello ASP.NET"
PasswordText.Attributes("Value") = "New Password"
MultiText.Text = "Multiline TextBox can hold many lines of text"
End Sub
</script>
</head>
<body>
<h1>Input Control Example</h1>
<form runat="server">
<table border="1" cellpadding="5" cellspacing="0">
<tr>
<td>
Single Line TextBox:
</td>
<td>
<asp:textbox id="SingleText"
text="Single Line TextBox"
runat="server" />
</td>
</tr>
<tr>
<td>
Password TextBox:
</td>
<td>
<asp:textbox id="PasswordText"
text="Password"
textmode="Password"
runat="server" />
</td>
</tr>
<tr>
<td>
Multiline TextBox:
</td>
<td>
<asp:textbox id="MultiText"
text="Multiline TextBox"
textmode="Multiline"
runat="server" />
</td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
| Related examples in the same category |
| 1. | asp:TextBox: format (VB.net) | | | | 2. | asp:TextBox: AccessKey (VB.net) | | | | 3. | asp:TextBox: BorderStyle (VB.net) | | | | 4. | Multiline asp:TextBox (VB.net) | | | | 5. | MaxLength for asp:textbox (VB.net) | | | | 6. | TabIndex for asp:textbox (VB.net) | | | | 7. | asp:textbox: back ground color (VB.net) | | | | 8. | asp:textbox: wrap (VB.net) | | | | 9. | BackColor, ForeColor, BorderColor, AccessKey, Columns for asp:textbox (VB.net) | | | | 10. | Convert value from asp:TextBox to upper case (VB.net) | | | | 11. | Control asp:TextBox visibility (VB.net) | | | | 12. | Get Text Box input and check if it is an Odd Number (VB.net) | | | | 13. | On text changed in asp:TextBox (VB.net) | | | | 14. | Watch TextBox, CheckBox and radiobutton auto post back action (C#) | | | | 15. | HTML Button, Select and InputBox in code behind (C#) | | | | 16. | asp: textbox on text changed event (C#) | | | | 17. | Validate textbox value manually (C#) | | | | 18. | Is asp:textbox empty (C#) | | | | 19. | Get value from TextBox (C#) | | | | 20. | Pre fill the asp textbox control (C#) | | | | 21. | TextMode: SingleLine, Password and MultiLine | | | | 22. | Set TextBox focus | | | | 23. | Triggering an event when a TextBox change occurs (VB) | | | | 24. | Triggering an event when a TextBox change occurs (C#) | | | | 25. | Set AutoCompleteType | | | | 26. | Set MaxLength, Columns | | | | 27. | Rows, TextMode, Wrap | | | | 28. | TextMode=Password | | | | 29. | Create URL from textbox input | | |
|