UrlMappingsSection Class
Assembly: System.Web (in system.web.dll)
The UrlMappingsSection class provides a way to programmatically access and modify the urlMappings section of a configuration file.
Note: |
|---|
| The urlMappings section contains UrlMapping objects that map URLs that are displayed to users to URLs that exist in your Web application. The UrlMappingsSection can write information into the related section of the configuration file according to the restrictions defined by the section property AllowDefinition whose value is MachineToApplication. Any attempt to write in a configuration file at a level not allowed in the hierarchy will result in an error message generated by the parser. However, you can use this class to read configuration information at any level in the hierarchy. |
The following code example shows how to obtain the UrlMappingsSection object from the configuration file of an existing Web application. Also shown is an excerpt of the configuration file.
// Get the Web application configuration. System.Configuration.Configuration configuration = WebConfigurationManager.OpenWebConfiguration( "/aspnetTest"); // Get the <urlMapping> section. UrlMappingsSection urlMappingSection = (UrlMappingsSection)configuration.GetSection( "system.web/urlMappings"); // Get the url mapping collection. UrlMappingCollection urlMappings = urlMappingSection.UrlMappings;
<urlMappings enabled="true">
<add url= "~/home.aspx"
mappedUrl="~/default.aspx?parm1=1"/>
<add url= "~/products.aspx"
mappedUrl="~/default.aspx?parm1=2"/>
</urlMappings>
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.UrlMappingsSection
Note: