Removes a reference to a module.
<remove name="ModuleName"/>
The following sections describe attributes, child elements, and parent elements.
Attribute
Description
name
Specifies the name under which the module was previously added using add.
The value must exactly match that of a previous add directive.
None.
Element
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 section.
httpModules
Configures the HTTP modules within an application.
The following example demonstrates how to remove a module.
<configuration> <system.web> <httpModules> <remove name="OutputCache"/> </httpModules> </system.web> </configuration>
Configuration section handler
System.Web.Configuration..::.HttpModulesSection
Configuration member
SystemWebSectionGroup..::.HttpModules
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 1.0, 1.1, or 2.0
Microsoft Visual Studio 2003 or Visual Studio 2005