views:

1354

answers:

3

I am trying to set up my tab order on the html side of my project. How do I set the tab order. Usually in visual basic, the option is in the menu bar under view/tab Order. How do I do this in asp?

A: 

Use the TabIndex property

Galwegian
@Galwegian, shouldn't you close this as an exact duplicate?
AnthonyWJones
+1  A: 
George Stocker
+1  A: 

Add TabIndex="x" to each control that can receive focus where x is an integer indicating the desired order of the controls.

AnthonyWJones