Validate as XHTML 1.1
-
is it possible to get ASP.NET pages developed with vs.net to validate as XHTML 1.1? i cannot around the name attribute that is seems to generate for the server form, as well as the viewstate input (which does not go away, despite EnableViewState=false) the highest i can get to validate is XHTML 1.0 transitional
-
is it possible to get ASP.NET pages developed with vs.net to validate as XHTML 1.1? i cannot around the name attribute that is seems to generate for the server form, as well as the viewstate input (which does not go away, despite EnableViewState=false) the highest i can get to validate is XHTML 1.0 transitional
Unfortunately, VS.NET 2002/2003 is not very XHTML-friendly, but they are planning to make the next version (code-named Whidbey) XHMTL 1.1 compliant out of the box: http://weblogs.asp.net/scottgu/archive/2003/11/25/39620.aspx[^] Marcie http://www.codeproject.com
-
Unfortunately, VS.NET 2002/2003 is not very XHTML-friendly, but they are planning to make the next version (code-named Whidbey) XHMTL 1.1 compliant out of the box: http://weblogs.asp.net/scottgu/archive/2003/11/25/39620.aspx[^] Marcie http://www.codeproject.com
do you know of anyway to at least completly disable viewstate?
-
do you know of anyway to at least completly disable viewstate?
Even if you disable ViewState, the hidden element will still be output to the page and will include the control tree. The only way to completely get rid of the elment is to not use server-side forms (
). Marcie http://www.codeproject.com