asp:TextBox: AccessKey (VB.net) : TextBox « Asp Control « ASP.Net

ASP.Net
1. ADO.net Database
2. Ajax
3. Asp Control
4. Collections
5. Components
6. Data Binding
7. Development
8. File Directory
9. HTML Control
10. Language Basics
11. Login Security
12. Mobile Control
13. Network
14. Page
15. Request
16. Response
17. Server
18. Session Cookie
19. Sitemap
20. Theme Style
21. User Control and Master Page
22. Validation by Control
23. Validation by Function
24. WebPart
25. WPF
26. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
ASP.Net » Asp Control » TextBox 
asp:TextBox: AccessKey (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)
  lblDataEntered.Text = "You entered:<BR>" _
      & txtName.Text & "<BR>" _
      & txtEmail.Text & "<BR>" _
      & txtPhone.Text
End Sub
</SCRIPT>
<HTML>
<HEAD>
<TITLE>Creating a Basic TextBox Control</TITLE>
</HEAD>
<form runat="server">
<asp:Label 
    id="lblDataEntered" 
    runat="server"
/>
<BR><BR>
Enter your Name:<BR>
<asp:TextBox 
    id="txtName" 
    Columns="25"
    MaxLength="30"
    Text="Your Name Here"
    runat=server 
/>
<BR><BR>
Enter your Email Address:<BR>
<asp:TextBox 
    id="txtEmail" 
    Columns="35"
    MaxLength="50"
    Text="@mycompany.com"
    BackColor="LightYellow"
    Font-Name="Comic Sans MS"
    Font-Size="9pt"
    Font-Bold="True"
    ToolTip="Remember to include your full email address!"
    runat=server 
/>
<BR><BR>
Enter your Phone Number:<BR>
<asp:TextBox 
    id="txtPhone" 
    Columns="15"
    MaxLength="15"
    Text="() -"
    AccessKey="P"
    BackColor="DarkRed"
    BorderWidth="3"
    BorderColor="DarkBlue"
    BorderStyle="Dashed"
    ForeColor="Yellow"
    ToolTip="No Extensions!"  
    runat=server 
/>
<BR><BR>
<asp:button 
    id="butOK"
    text="OK"
    Type="Submit"
    OnClick="SubmitBtn_Click" 
    runat="server"
/>
</Form>
</BODY>
</HTML>
           
       
Related examples in the same category
1. asp:TextBox: format (VB.net)
2. asp:TextBox: BorderStyle (VB.net)
3. Single Line asp:TextBox (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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.