TABINDEX not working on HyperLinks
- by b0x0rz
<asp:HyperLink ID="SignIn" runat="server" CssClass="SignIn" TabIndex="3">Sign In</asp:HyperLink>
the problem with the above is that TABINDEX does not work. I have also a username and password TEXTBOXES and the tabindex works with them, but the hyperlink does not work.
i need it also on other links, so replacing a sign in with a button is not helping me much, unless i replace all links with a button.
how to figure out why the hyperlink's tabindex is not working?
thnx
edit ** more info **
<input name="ctl00$ctl00$GlobalPageContentPlaceHolder$SearchPageContentPlaceHolder$KeywordsTextbox" type="text" maxlength="80" id="KeywordsTextbox" class="KeywordsTextbox" />
<a id="GlobalPageContentPlaceHolder_SearchPageContentPlaceHolder_SearchLinkButton" class="SearchLinkButton" href="javascript:__doPostBack('ctl00$ctl00$GlobalPageContentPlaceHolder$SearchPageContentPlaceHolder$SearchLinkButton','')">Search Now</a>
whn tab-ing it works for the input, but not for link.