ASP.NET Syntax ASP.NET Configuration Sections
Configures XHTML 1.0-conforming control rendering.
<xhtmlConformance
mode = "Transitional | Legacy | Strict"
/>
The following sections describe attributes, child elements, and parent elements.
Attribute |
Description |
mode |
An optional String attribute, which specifies the XHTML rendering mode for an ASP.NET application. The mode can be one of the values listed in the following table. The default is Transitional ( XHTML 1.0 Transitional ).
Value |
Description |
Transitional |
XHTML 1.0 Transitional |
Strict |
XHTML 1.0 Strict conformance |
Legacy |
Reverts a number of rendering changes made for conformance to the v1.1 rendering behavior. |
|
None.
Element |
Description |
configuration |
The required root element in every configuration file that is used by the common language runtime and .NET Framework-based applications. |
system.web |
Specifies the root element for the ASP.NET configuration settings in a configuration file. Contains configuration elements that configure ASP.NET Web applications and control how the applications behave. |
By default, when you are working with browsers that support HTML 4.0 or later, ASP.NET pages and controls render markup that is compatible with the XHTML 1.0 Transitional standard. However, under some circumstances, you might not want ASP.NET to render XHTML markup. This is typically true when you have existing pages that rely on tags or attributes that would ordinarily be prohibited by XHTML.
NOTE: Only rendering changes that are likely to break existing applications are reverted to their old behavior. There is no mechanism to revert all changes made to comply with the XHTML specification.
The following default xhtmlConformance element is not explicitly configured in the machine configuration file or in the root Web.config file, but is the default configuration returned by an application in the .NET Framework version 2.0.
<xhtmlConformance mode = "Transitional" />