|
ASP.NET Book
The online ASP.NET Tutorial Book |
|||||||||
|
|
|||||||||
ASP.NET BasicsHTML BasicsASP.NET Web Server Advanced HTML Application Designing Using Visual Studio ASP.NET Standards ASP.NET Styling ASP.NET Navigation ASP.NET TipsASP.NET ValidationHTML forms CSS Styling CSS Advanced ASP.NET Features ASP.NET Image Effects Common mistakes DB Design tips Building ApplicationsDesign Secure AppsBuild Secure Apps |
5.1 Tab Order |
||||||||
|
When you develop a web application, you should make sure that it meets the best accessibility standards and the most user-friendly interface guidelines. For instance, if your site contains many forms where the user has to enter data, if you have developed your site so the user has to move to the next textbox using the mouse, the user has to click on every textbox on every form to move. You can overcome this hassle with the use of tab orders. With tab orders all the user has to do is press the Tab key to move to the next textbox. When using the ASP.NET controls you can include the “TabIndex” property. This sets a Tab order to the ASP.NET control. The tab sequence is from a lowest to the highest index number and then starts all over again. So according to your site’s users you can set the tab order in a way they prefer more user-friendly. Note:
Table of ContentsChapter 1 - HTML Web Standards [top] |
|||||||||