BackColor, ForeColor, BorderColor, AccessKey, Columns for asp:textbox (VB.net) : TextBox « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Asp Control
3. Collections
4. Components
5. Data Binding
6. Development
7. HTML Control
8. Mobile Control
9. Page
10. Request
11. Response
12. Server
13. Session Cookie
14. User Control and Master Page
15. Validation by Control
16. Validation by Function
17. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
ASP.Net » Asp Control » TextBox 
BackColor, ForeColor, BorderColor, AccessKey, Columns for asp:textbox (VB.net)

<%@ Page Language=VB Debug=true %>
<script runat=server>
Sub Page_Load(ByVal Sender as Object, ByVal E as EventArgs)

End Sub
Sub SubmitBtn_Click(Sender As Object, E As EventArgs)

End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>TextBox Controls Sample Page</TITLE>
</HEAD>
<BODY >
<form runat="server">
<Font Face="Tahoma" Size="+1">
<asp:TextBox 
    id="txtStandard" 
    Columns="25"
    MaxLength="30"
    Text="Single Line"
    runat=server 
/>
<BR><BR>
<asp:TextBox 
    id="txtPassword" 
    Columns="10"
    MaxLength="30"
    runat=server 
    TabIndex=1
    Text="Password"
    TextMode="Password"
/>
<BR><BR>
<asp:TextBox 
    id="txtMemo" 
    Columns="60"
    Rows="5"
    runat=server 
    Text="Multiple Lines"
    TextMode="MultiLine"
    Font-Name="Arial"
    Font-Bold="True"
    BackColor="LightYellow"
    ForeColor="DarkRed"
    BorderColor="DarkRed"
    AccessKey="M"
/>
</Font>
</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. Single Line asp:TextBox (VB.net)
5. Multiline asp:TextBox (VB.net)
6. MaxLength for asp:textbox (VB.net)
7. TabIndex for asp:textbox (VB.net)
8. asp:textbox: back ground color (VB.net)
9. asp:textbox: wrap (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#)
w__ww.___j__a_v_a_2_s___.c___o__m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.