Set tab index for html and asp controls on aspx page

  • Thread starter Thread starter moondaddy
  • Start date Start date
M

moondaddy

I have an aspx page where i need to define the tab order of the various
controls some of which are html controls and some are asp controls. Also,
many of the contorls belong to the same class which is used to set thier
style. How can I define thier tab orders?
 
Both controls use the tabindex property/attribute.

Could you explain further what you need? You should be able to set a
different value for any control:

tabindex="5"
 
Back
Top