Mega Code Archive

 
Categories / ASP.Net Tutorial / ASP Net Controls
 

Using the Label server control to provide hot-key functionality

<%@ Page Language="C#" %> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Label Server Control</title> </head> <body>     <form id="form1" runat="server">             <asp:Label ID="Label1"                         Runat="server"                         AccessKey="N"                         AssociatedControlID="Textbox1">User<u>n</u>ame             </asp:Label>             <asp:Textbox ID="TextBox1" Runat="server"></asp:Textbox>             <asp:Label ID="Label2"                         Runat="server"                         AccessKey="P"                         AssociatedControlID="Textbox2"><u>P</u>assword             </asp:Label>             <asp:Textbox ID="TextBox2" Runat="server"></asp:Textbox>             <asp:Button ID="Button1" Runat="server" Text="Submit" />     </form> </body> </html>