Link to home
Start Free TrialLog in
Avatar of gorexy
gorexy

asked on

ASP tab control

HI,
  Is it possible to have tab control using ASP?  I have a few forms that need to be filled by users and I want to use Tab control so that user can fill all the fomrs in 1 page

Thanks
ASKER CERTIFIED SOLUTION
Avatar of B_Dorsey
B_Dorsey

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
In your form fields just add the tabindex attribute to your form fields for example:
<input type="text" name="SomeField" tabindex="1">
<input type="checkbox" name="YesNo" tabindex="2">
Avatar of gorexy
gorexy

ASKER

swinslow, how it works?  I tried but seems doesn;t work.

B_Dorsey's concept seems work well although I didn't test it.
Avatar of gorexy

ASKER

I think Layer is a good idea! Thanks