UrlMapping.MappedUrl Property

Definition

A URL in your Web application.

[System.Configuration.ConfigurationProperty("mappedUrl", IsRequired=true)]
public string MappedUrl { get; }

Property Value

The URL in your Web application that has been mapped to the value specified by the Url property.

Attributes

Examples

The following code example shows how to obtain the MappedUrl property. This example is from a larger example for the UrlMapping class.

urlMap = (UrlMapping)urlMapSection.UrlMappings[showVal - 1];
realURL.Text = urlMap.MappedUrl;

Remarks

The MappedUrl property is the programmatic equivalent of the mappedUrl attribute of the add element in the urlMappings section of a configuration file.

Poznámka

When using IIS 5.0, if you use the MappedUrl property to map from a supported page type (such as an .aspx file) to an unsupported page type (such as an .asp page), an error will occur. This type of mapping is supported in IIS version 6.0.

Applies to

Produkt Verze
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also