UrlMapping.MappedUrl 属性

定义

您的 Web 应用程序中的 URL。

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

属性值

您的 Web 应用程序中的 URL,该 URL 已映射到由 Url 属性指定的值。

属性

示例

下面的代码示例演示如何获取 MappedUrl 属性。 此示例来自 类的 UrlMapping 较大示例。

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

注解

属性MappedUrl是配置文件 的 mappedUrl 节中 urlMappings 元素的 add 属性的编程等效项。

注意

使用 IIS 5.0 时,如果使用 MappedUrl 属性从受支持的页面类型 ((例如 .aspx 文件) 映射到不支持的页面类型 (如 .asp 页) ),则会发生错误。 IIS 版本 6.0 支持这种类型的映射。

适用于

另请参阅