删除对模块的引用。<remove> 的值必须与前面的 <add> 指令的值完全一致。
配置结构的示例:
<configuration>
<system.web>
<httpModules>
<remove>
<remove name="ModuleName"/>
属性 | 描述 |
---|---|
name | 先前使用 <add> 添加的模块的名称。 |
以下示例删除 OutputCache 模块。
<configuration>
<system.web>
<httpModules>
<remove name="OutputCache"/>
</httpModules>
</system.web>
</configuration>
© 1997-2003 Microsoft Corporation。保留所有权利。