1

I have an asp:ValidationSummary control. I have the markup as below:

<asp:ValidationSummary ID="LoginValidationSummary" runat="server" CssClass="validationsummary" ValidationGroup="ApplicantLoginGroup" ClientIDMode="Static" aria-live="assertive" />

When there is a validation error, the screen reader does say "alert", but does not read out the errors listed in the summary section.

Any thoughts?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Manali
  • 53
  • 7
  • Can you share the html code that is generated containing the error? It can then be reverse engineered to see how the output needs to be modified for assistive technologies to read it correctly. – aditya Mar 31 '18 at 01:30
  • Here is the HTML code generated:
    • First name is required.
    • Last name is required.
    – Manali Apr 02 '18 at 13:04

1 Answers1

0

There are hundreds of requirements a website should meet to pass validation. So, I never tried to implement accessibility support by myself. I used DX editors (and several other controls) to support accessibility in my applications. They support WCAG and Section 508.

Vladimir
  • 828
  • 6
  • 8