简体   繁体   中英

Cannot set tabindex on ASP:LinkButton

I have an ASP Web Forms project with a LinkButton control. I try to set the tabindex in the control's property grid and it adds it to the code, however when I compile and run the page the tabindex is gone. The reason I need a tabindex (tabindex="0") is to make this linkbutton tabbable.

I also tried with tabindex 1 and tabindex 2.

Here is my .ascx control:

 <asp:LinkButton runat="server" CssClass="continue-button" ID="continue" OnClientClick="ProcessFormAnimation();" OnCommand="continue_Command" TabIndex="2"> Continue </asp:LinkButton> 

Here is the rendered code:

 <a onclick="ProcessFormAnimation();" id="continue" class="continue-button"> Continue </a> 

The LinkButton Support TabIndex

Documentation Microsoft ASP.NET

Remembering that,

Only controls with a tab index other than zero will render the tabindex attribute.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM