Skip control when tabbing

  • Thread starter Thread starter Ty
  • Start date Start date
T

Ty

I am creating a ASP.net project and I wanted to make it so that when
the user tabs on on of my pages that they do not have to tab through
some controls.

Is there a way to skip controls while tabbing?

Thanks,

Ty
 
I am creating a ASP.net project and I wanted to make it so that when
the user tabs on on of my pages that they do not have to tab through
some controls.

Is there a way to skip controls while tabbing?

Thanks,

Ty

I am assuming controls in ASP work similarly to Windows Forms.

Control.TabStop = False
 
Back
Top