다음을 통해 공유


HttpRequest.Path 속성

정의

현재 요청의 가상 경로를 가져옵니다.

public:
 property System::String ^ Path { System::String ^ get(); };
public string Path { get; }
member this.Path : string
Public ReadOnly Property Path As String

속성 값

String

현재 요청의 가상 경로입니다.

예제

다음 코드 예제에서는 메서드를 HtmlEncode 사용하여 속성 값 PathWriteLine 메서드를 HTML로 인코딩하여 인코딩된 값을 파일에 씁니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 HttpRequest 클래스입니다.

// Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(DateTime.Now.ToString()));
sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath));
sw.WriteLine(Server.HtmlEncode(Request.ApplicationPath));
sw.WriteLine(Server.HtmlEncode(Request.FilePath));
sw.WriteLine(Server.HtmlEncode(Request.Path));
' Write request information to the file with HTML encoding.
sw.WriteLine(Server.HtmlEncode(DateTime.Now.ToString()))
sw.WriteLine(Server.HtmlEncode(Request.CurrentExecutionFilePath))
sw.WriteLine(Server.HtmlEncode(Request.ApplicationPath))
sw.WriteLine(Server.HtmlEncode(Request.FilePath))
sw.WriteLine(Server.HtmlEncode(Request.Path))

설명

이것은 Path 트레일러와 트레일러의 FilePath 연결입니다 PathInfo . 예를 들어 URL http://www.contoso.com/virdir/page.html/tailPath 의 경우 /virdir/page.html/tail입니다.

적용 대상

추가 정보