R – Tabbing behavior in WebForms

asp.nettabswebforms

In WinForms, I can design a form and have a TabValue to control which control is selected each time the user hits 'Tab'. My question, in a Webform, is there a mechanism for doing the same thing?

Edit: Does the same apply to an Ajax heavy application?

Best Solution

You can set this with the TabIndex property on the ASP controls. If you want to do this on something that isn't an ASP control, you could also try something like the jQuery tabIndex plugin.

Related Question