UrlMapping.MappedUrl Property

Definition

A URL in your Web application.

public:
 property System::String ^ MappedUrl { System::String ^ get(); };
[System.Configuration.ConfigurationProperty("mappedUrl", IsRequired=true)]
public string MappedUrl { get; }
[<System.Configuration.ConfigurationProperty("mappedUrl", IsRequired=true)>]
member this.MappedUrl : string
Public ReadOnly Property MappedUrl As String

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;
urlMap = CType(urlMapSection.UrlMappings(showVal - 1), UrlMapping)
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.

Note

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

See also