I am working on Section 508 compliance for an existing application.
Now when I use http://achecker.ca/checker/index.php to test my page for Section 508 it shows “script must have a noscript section.” for the Ajax generated scripts.
How to get Ajax toolkit to have noscript tag appended after it generates the script on client side.
In Global.asax I have added below event and it worked like a charm
void Application_PostReleaseRequestState(object sender, EventArgs e)
public NoScriptTagAppendFilter(Stream stream)
This would definitely help someone in future who wants to 508 compatibility for script generated by Ajax & testing using http://achecker.ca/checker/index.php