Release 1.0 - ...
<modules> element
Configures the HTTP modules within an application. The example below shows a typical modules section for a Smartsite web.config.
Example
XML |
Copy Code
|
<modules>
<add name="ixbridge" type="Smartsite.AspNet.Bridge.Hook,Smartsite.AspNet.Bridge" preCondition=""/>
<add name="ImageServer" type="Smartsite.ImageProcessor.ImageServerModule,Smartsite.ImageProcessor" preCondition=""/>
<add name="PdfModule" type="Smartsite.Pdf.PdfModule,Smartsite.Pdf" preCondition=""/>
<!-- update session module with modified preCondition -->
<remove name="Session"/>
<add name="Session" type="System.Web.SessionState.SessionStateModule" preCondition=""/>
<!-- replace ASP.NET Forms Authentication with custom Smartsite one -->
<remove name="FormsAuthentication"/>
<add name="FormsAuthentication" type="Smartsite.AspNet.Bridge.CmsFormsAuthenticationModule,Smartsite.AspNet.Bridge" preCondition=""/>
</modules>
|
Attributes
None.
Parent element
Element name |
Description |
<system.webServer> |
Specifies the root element for the IIS 7 configuration section and contains configuration elements that configure settings used by the Web server engine and modules.
|
Child elements
None.