C
Cat
I created a web site, and I thought I followed XHTML 1.1 rules. But
when I validated the pages, I got some error messages. I found that
those codes are automatically generated parts by ASP.NET.
There is no attribute "name".
<form name="form1" method="post" action="Default.aspx" id="form1">
And input is not allowed here
Since ASP.NET buttons should be placed in server side forms, I don't
know how to remove this error. So, what this comes down to is that it
is (normally) impossible to create XHTML 1.1 page with ASP.NET 2.0? I
tried to search the internet but all I found was to create a hacked
assembly and place it on the server. But this is impossible since I'm
not the administrator of my hosting provider's computer. Is there any
normal way to suppress the generation of name tag and hidden input
tag? Or should I not use XHTML 1.1 with ASP.NET 2.0?
Thank you.
when I validated the pages, I got some error messages. I found that
those codes are automatically generated parts by ASP.NET.
There is no attribute "name".
<form name="form1" method="post" action="Default.aspx" id="form1">
And input is not allowed here
Since ASP.NET buttons should be placed in server side forms, I don't
know how to remove this error. So, what this comes down to is that it
is (normally) impossible to create XHTML 1.1 page with ASP.NET 2.0? I
tried to search the internet but all I found was to create a hacked
assembly and place it on the server. But this is impossible since I'm
not the administrator of my hosting provider's computer. Is there any
normal way to suppress the generation of name tag and hidden input
tag? Or should I not use XHTML 1.1 with ASP.NET 2.0?
Thank you.