Base Class for Tab Index in ASP.NET

你离开我真会死。 提交于 2019-12-11 17:36:31

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/1371511/base-class-for-tab-index-in-asp-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!