Hello...
I have a APSX page with a form. My page validate with XHTML 1.1.
The form tag is:
<form id="Contact" method="post" runat="server">
When I see the page in the browser this form tag is:
<form name="aspnetForm" method="post" action="default.aspx" id="aspnetForm">
The .Net 2.0 added the attribute name.
When I validate my page with the HTML Validator (http://validator.w3.) I get this error:
This page is not Valid XHTML 1.1!
Line 80, Column 16:
there is no attribute "name": <form name="aspnetForm" method="post"..
How I delete this NAME attrbiute that is added by .Net?
Thanks!