asp.net.ph

Skip Navigation Links

<xhtmlConformance> Section

ASP.NET Syntax   ASP.NET Configuration Sections


Configures XHTML 1.0-conforming control rendering.

<xhtmlConformance
   mode = "Transitional | Legacy | Strict"
/>

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes


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.


Child Elements

None.

Parent Elements


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.

Remarks

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.

Default Configuration

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" />

Example

The following code example switches the rendering mode to conform to the XHTML 1.0 strict standard. The key change that occurs is that the name attribute is no longer rendered on the form tag.

<xhtmlConformance mode = "Strict" />
See Also

ASP.NET Configuration   XhtmlConformanceSection Class   XhtmlConformanceMode Enumeration



© 2025 Reynald Nuñez and asp.net.ph. All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note