| ||||||||||||||||||||||||||||
UrlMappingsSection ClassSystem.Web.Configuration Namespace .NET Framework version 2.0 Provides programmatic access to the urlMappings configuration file section. This class cannot be inherited.
|
||||||||||||||||||||||||||||
| Visibility | Name | Value Type | Accessibility |
|---|---|---|---|
| public | IsEnabled | Boolean | [ Get , Set ] |
| public | UrlMappings | UrlMappingCollection | [ Get ] |
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. 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; | ||
| C# | VB | |
<urlMappings enabled = "true">
<add url= "~/home.aspx"
mappedUrl = "~/default.aspx?parm1=1" />
<add url= "~/products.aspx"
mappedUrl = "~/default.aspx?parm1=2" />
</urlMappings>
ASP.NET Configuration <urlMappings> Section UrlMapping Class UrlMappingCollection Class
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme