How can I skip tabbing over the SiteMapPath? This is what I’m trying to do (code below), but it still focuses on the path links after a few TAB key presses.
<asp:SiteMapPath ID="smp1" runat="server" TabIndex="-1" />
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Tab order (unless specified) is driven by the element order in the HTML flow. You’ll have to set the
TabIndexproperty to a large number as to be enough to skip the number of elements that can receive focus in the browser.