Default Rendering set to XHTML Transitional in RTM
Posted
Monday, August 22, 2005 8:11 AM
by
C-Dog's .NET Tip of the Day
In Beta 2, the default rendering was XHTML 1.1 strict. Since some people depended
on the name attribute being on the form tag (not sure who), they decided to make
the default Transitional. Luckily, this is easy to override.
Just add the following tag to the system.web section in your config file.
<system.Web>
<!--Possible modes are "transitional", "strict", and "legacy".
-->
<xhtmlConformance mode="strict" />
</system.Web>
Read the complete post at http://www.dotnettipoftheday.com/blog.aspx?id=74