Have 2 instances of a usercontrol on one page but the tab index is off.
Example:
Form 1 -
name field
phone field
email field
Form 2 -
name field
phone field
email field
If I'm on Form 1, name field and hit tab, Form 2, name field comes into focus.
Each usercontrol has it's own unique ID:
Form 1:
<usc1:EventManagement ID="form2" runat="server" />
Form 2:
<usc1:EventManagement ID="form3" runat="server" />
How can I control the tabindex?
Thanks in advance.