I am creating a login page and want to give user the flexibility to control the focus by using keyboard. I am using AccessKey but it seems not working. Any help will be appreciated.
Below is my HTML for Email field only.
<table>
<tr>
<td>
<div class="loginLabel">
<span class="emailPasswordText"><u>E</u>mail</span>
</div>
<asp:TextBox ID="txtUserName" runat="server"
TabIndex="1" CssClass="inputCredential" MaxLength="60"
AccessKey="E">
</asp:TextBox>
</td>
</tr>
</table>
I tried by using Alt+E and Ctrl+E in Mozilla Firefox.