Freigeben über


<remove>-Element für <httpModules>

Entfernt einen Verweis auf ein Modul. Der Wert von <remove> muss genau mit dem einer vorherigen <add>-Direktive übereinstimmen.

<configuration>
   <system.web>
      <httpModules>
**         <remove>**

<removename="ModuleName"/>

Erforderliches Attribut

Attribut Beschreibung
name Der Name, unter dem das Modul zuvor mit Hilfe von <add> hinzugefügt wurde

Beispiel

Im folgenden Beispiel wird das Modul OutputCache entfernt.

<configuration>
   <system.web>
      <httpModules>
         <remove name="OutputCache"/>
      </httpModules>
   </system.web>
</configuration>

Anforderungen

Enthalten in: <system.web>

Webplattform: IIS 5.0, IIS 5.1, IIS 6.0

Konfigurationsdatei: Machine.config, Web.config

Konfigurationsabschnittshandler: System.Web.Configuration.HttpModulesConfigurationHandler

Siehe auch

<httpModules>-Element | ASP.NET-Konfiguration | ASP.NET-Einstellungsschema