开发者

ASP.NET How to Skip Tabbing Over SiteMapPath?

开发者 https://www.devze.com 2023-02-03 17:37 出处:网络
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 pr开发者_如何转开发esses.

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 pr开发者_如何转开发esses.

<asp:SiteMapPath ID="smp1" runat="server" TabIndex="-1"  />


Tab order (unless specified) is driven by the element order in the HTML flow. You'll have to set the TabIndex property to a large number as to be enough to skip the number of elements that can receive focus in the browser.

0

精彩评论

暂无评论...
验证码 换一张
取 消