tagMapping Element for pages (ASP.NET Settings Schema)

Defines a collection of tag types that are remapped to other tag types at compile time.

This element is new in the .NET Framework version 2.0.

configuration Element (General Settings Schema)
  system.web Element (ASP.NET Settings Schema)
    pages Element (ASP.NET Settings Schema)
      tagMapping Element for pages (ASP.NET Settings Schema)

<tagMapping> 
   <add /> 
   <remove /> 
   <clear/>
</tagMapping>

Attributes and Elements

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

Attributes

None.

Child Elements

Element

Description

add

Optional element.

Adds a tag mapping to the collection of tag mappings that are used during pre-compilation.

clear

Optional element.

Removes all references to inherited tag mappings, allowing only the tag mappings that are added by the current add element.

remove

Optional element.

Removes a reference to an inherited tag mapping from the collection of tag mappings.

Parent Elements

Element

Description

configuration

Specifies the required root element in every configuration file that is used by the common language runtime and the .NET Framework applications.

system.web

Specifies the root element for the ASP.NET configuration settings in a configuration file and contains configuration elements that configure ASP.NET Web applications and control how the applications behave.

pages

Defines page-specific configuration settings globally, such as ASP.NET directives, for pages and controls that are within the scope of the configuration file.

Remarks

The tagMapping element defines a collection of tag types that are remapped to other tag types at compile time. This remapping causes the mapped type to be used in place of the original tag type for all pages and controls in the ASP.NET application within the scope of the configuration file.

Note

Unlike other attributes and collections in the pages section, tag remapping has no matching ASP.NET page directive.

Default Configuration

The following default tagMapping element is not explicitly configured in the Machine.config file or in the root Web.config file. However, it is the default configuration that is returned by the application.

   <tagMapping>
      <clear />
   </tagMapping>

Example

The following code example shows how to specify values for several properties of the TagMapInfo class.

   <pages>
      <tagMapping>
         <add
            tagType=
               "System.Web.UI.WebControls.WebParts.WebPartManager"
            mappedTagType=
               "Microsoft.Sharepoint.WebPartPartManager, 
                MSPS.Web.dll, Version='2.0.0.0'" 
         />
      </tagMapping>
   </pages>

Element Information

Configuration section handler

PagesSection

Configuration member

TagMapping

TagMapCollection

Configurable locations

Machine.config

Root-level Web.config

Application-level Web.config

Virtual or physical directory–level Web.config

Requirements

Microsoft Internet Information Services (IIS) version 5.0, 5.1, or 6.0

The .NET Framework version 2.0

Microsoft Visual Studio 2003 or Visual Studio 2005

See Also

Tasks

How to: Configure Specific Directories Using Location Settings

How to: Lock ASP.NET Configuration Settings

Reference

pages Element (ASP.NET Settings Schema)

add Element for tagMapping for pages (ASP.NET Settings Schema)

clear Element for tagMapping for pages (ASP.NET Settings Schema)

remove Element for tagMapping for pages (ASP.NET Settings Schema)

namespaces Element for pages (ASP.NET Settings Schema)

controls Element for pages (ASP.NET Settings Schema)

system.web Element (ASP.NET Settings Schema)

configuration Element (General Settings Schema)

@ Page

System.Configuration

System.Web.Configuration

TagMapping

TagMapCollection

PagesSection

Concepts

ASP.NET Configuration File Hierarchy and Inheritance

Securing ASP.NET Configuration

Other Resources

General Configuration Settings (ASP.NET)

ASP.NET Configuration Settings

ASP.NET Web Site Administration

ASP.NET Configuration API