HttpRequest.CurrentExecutionFilePath 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 요청의 가상 경로를 가져옵니다.
public:
property System::String ^ CurrentExecutionFilePath { System::String ^ get(); };
public string CurrentExecutionFilePath { get; }
member this.CurrentExecutionFilePath : string
Public ReadOnly Property CurrentExecutionFilePath As String
속성 값
현재 요청의 가상 경로입니다.
예제
다음 코드 예제에서는 메서드를 HtmlEncode 사용하여 속성 값 CurrentExecutionFilePath 과 WriteLine 메서드를 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))
설명
CurrentExecutionFilePath 는 현재 실행 중인 페이지 처리기에 대한 파일 경로를 반환합니다. 사용 및 Transfer 메서드를 사용하는 Execute 리디렉션 시나리오의 CurrentExecutionFilePath 경우 속성이 (자식 페이지)로 리디렉션된 페이지의 경로를 반환합니다. 그러나 클라이언트가 다른 페이지로 리디렉션되면 속성은 FilePath 원래 페이지의 경로를 반환합니다.