共用方式為


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 屬性指定的值。

屬性

範例

下列程式碼範例示範如何取得 MappedUrl 屬性。 此範例來自 類別的較大範例 UrlMapping

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

備註

屬性 MappedUrl 是組態檔 區段中專案 addurlMappings 屬性的程式設計對等 mappedUrl 專案。

注意

使用 IIS 5.0 時,如果您使用 MappedUrl 屬性從支援的網頁類型對應 (例如 .aspx 檔案) 不支援的頁面類型, (例如 .asp 頁面) ,就會發生錯誤。 IIS 6.0 版支援這種類型的對應。

適用於

另請參閱