Skip control when tabbing

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ty

    Skip control when tabbing

    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
  • zacks@construction-imaging.com

    #2
    Re: Skip control when tabbing

    On Jun 27, 8:04 am, Ty <tbar...@lewist ownhospital.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

    Comment

    • Ty

      #3
      Re: Skip control when tabbing

      On Jun 27, 8:46 am, za...@construct ion-imaging.com wrote:
      On Jun 27, 8:04 am, Ty <tbar...@lewist ownhospital.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

      Comment

      • Ty

        #4
        Re: Skip control when tabbing

        On Jun 27, 9:40 am, Ty <tbar...@lewist ownhospital.org wrote:
        On Jun 27, 8:46 am, za...@construct ion-imaging.com wrote:
        >
        On Jun 27, 8:04 am, Ty <tbar...@lewist ownhospital.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

        Comment

        Working...