I have an asp.net website which is using the xhtml strict dtd & making use of xhtmlConformance mode in web.config. When validated by source I get zero errors but when by URI I get 2 errors
there is no attribute "name"
<form name="aspnetForm" method="post" action="Default.aspx" id="aspnetForm">
I don't know where that name attribute has come from. It doesn't exist in the outputted xhtml.
The second error is because it sees the viewstate as not being wrapped in a div, (even though it is).
Not sure what's happening.