Resources

Accessibility considerations in ASP.NET

How Controls Support Accessibility

ASP.NET controls designed to be accessible.

Identify themselves to screen readers and do not require a mouse for input.

Tab index settings make mouse-less navigation easier.

Enable SkipLinkText property by default - causes screen readers to skip navigation links within control (which are not normally visible to users).

##Improving Visual Accessibility

If cannot meet accessibility goals consider providing alternate text-only pages. Could use global resources to allow both accessible and non-accessible pages to share content.

Improving Accessibility of Forms

Accessibility Testing of Page

Accessibility Testing of Application

Downloads