UrlMapping.MappedUrl Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
URL dans votre application Web.
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
Valeur de propriété
URL dans votre application Web, mappée à la valeur spécifiée par la propriété Url.
- Attributs
Exemples
L’exemple de code suivant montre comment obtenir la MappedUrl propriété. Cet exemple provient d’un exemple plus grand pour la UrlMapping classe.
urlMap = (UrlMapping)urlMapSection.UrlMappings[showVal - 1];
realURL.Text = urlMap.MappedUrl;
urlMap = CType(urlMapSection.UrlMappings(showVal - 1), UrlMapping)
realURL.Text = urlMap.MappedUrl
Remarques
La MappedUrl propriété est l’équivalent programmatique de l’attribut mappedUrl
de l’élément add
dans la urlMappings
section d’un fichier de configuration.
Notes
Lorsque vous utilisez IIS 5.0, si vous utilisez la MappedUrl propriété pour mapper à partir d’un type de page pris en charge (tel qu’un fichier .aspx) vers un type de page non pris en charge (tel qu’une page .asp), une erreur se produit. Ce type de mappage est pris en charge dans IIS version 6.0.