HttpRequest.PhysicalPath 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.
Obtient le chemin d'accès physique, dans le système de fichiers, correspondant à l'URL demandée.
public:
property System::String ^ PhysicalPath { System::String ^ get(); };
public string PhysicalPath { get; }
member this.PhysicalPath : string
Public ReadOnly Property PhysicalPath As String
Valeur de propriété
Chemin d'accès de la requête actuelle dans le système de fichiers.
Exemples
L’exemple de code suivant utilise la HtmlEncode méthode pour encoder au format HTML la valeur de la PhysicalPath propriété et la WriteLine méthode pour écrire la valeur encodée dans le fichier. Cet exemple de code fait partie d’un exemple plus grand fourni pour la HttpRequest classe.
// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath));
sw.WriteLine(Server.HtmlEncode(Request.RawUrl));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(Request.PhysicalApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.PhysicalPath))
sw.WriteLine(Server.HtmlEncode(Request.RawUrl))
Remarques
Dans les scénarios de redirection utilisant Execute et Transfer, la PhysicalPath propriété retourne le chemin d’accès à la page d’origine. Pour rechercher le chemin physique de la page en cours d’exécution, utilisez la MapPath méthode avec l’argument d’entrée défini comme CurrentExecutionFilePath propriété.