UserControl.Request 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 웹 요청에 대한 HttpRequest 개체를 가져옵니다.
public:
property System::Web::HttpRequest ^ Request { System::Web::HttpRequest ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.HttpRequest Request { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Request : System.Web.HttpRequest
Public ReadOnly Property Request As HttpRequest
속성 값
HttpRequest 인스턴스를 포함하는 Page와 관련된 UserControl 개체입니다.
- 특성
예제
다음 예제에서는 속성을 사용 하 여 Request 사용자 컨트롤의 실제 경로를 가져옵니다. With an ID property set to myControl
, the user control's location is obtained by a containing page or user control using the myControl.Request.Path
syntax.
myControl.Response.Write("<br /><b>The server code is running on machine</b> : " + myControl.Server.MachineName);
string actualServerPath = myControl.MapPath(myControl.Request.Path);
myControl.Response.Write("<br /><b>The server code is running on machine</b> : " + myControl.Server.MachineName)
Dim actualServerPath As String = myControl.MapPath(myControl.Request.Path)