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.