From: Ty on
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
From: zacks on
On Jun 27, 8:04 am, Ty <tbar...(a)lewistownhospital.org> wrote:
> 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
From: Ty on
On Jun 27, 8:46 am, za...(a)construction-imaging.com wrote:
> On Jun 27, 8:04 am, Ty <tbar...(a)lewistownhospital.org> wrote:
>
> > 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

Unfourtunatly no they are not. TabStop does not exist.

Thanks,
Ty
From: Ty on
On Jun 27, 9:40 am, Ty <tbar...(a)lewistownhospital.org> wrote:
> On Jun 27, 8:46 am, za...(a)construction-imaging.com wrote:
>
> > On Jun 27, 8:04 am, Ty <tbar...(a)lewistownhospital.org> wrote:
>
> > > 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
>
> Unfourtunatly no they are not. TabStop does not exist.
>
> Thanks,
> Ty

I got the answer at forms.asp.net

set the tabindex to -1

Thanks Vinz

Ty