ASP.NET 中选项卡索引的基类
我正在尝试创建一种很好的通用方法来设置 ASP.NET 应用程序页面中许多元素的选项卡索引(使用 VB.NET)。因此,我想知道是否有一个基类来控制继承自的 TabIndex 属性的实现,以便我可以生成以下代码:
Public Sub GenerateTabIndex(order as List(Of TabIndexBaseClass))
...
Blah Blah Blah code...
End Sub
感谢您的帮助。
注意我无法使用 View ->选项卡顺序;很遗憾。
I'm trying to create a nice generic way of setting the tab index on many elements in a page of an ASP.NET app (using VB.NET). As a result I was wondering if there was a base class that controls implementing the TabIndex property inherited from so I could generate the following code:
Public Sub GenerateTabIndex(order as List(Of TabIndexBaseClass))
...
Blah Blah Blah code...
End Sub
Thanks for the help.
N.B. I cannot use View -> Tab Order; unfortunately.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为我刚刚发现它,所以我要在这里回答我自己的问题。
使用WebControl类;它内置了 TabIndex 方法。我试图使用 Control 类。
I'm going to answer my own question here since I just found it.
Use the WebControl class; it has the TabIndex Method build in. I was attempting to use the Control class.