setting tab order in web form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi just wondering if anyone knows how to set the Tab order in a web form,
this is the order that the controls get focus when the user hits the Tab key,
thanks.
 
Hi Paul,

The easiest way is to click on each control and then set the TabIndex
property for each one. Or set the TabIndex property in your code behind in
your Page_Load() event. Ken.
 
sounds pretty easy to implimnet, thanks for the information.

Ken Dopierala Jr. said:
Hi Paul,

The easiest way is to click on each control and then set the TabIndex
property for each one. Or set the TabIndex property in your code behind in
your Page_Load() event. Ken.
 
Back
Top