UserControl.Request Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the HttpRequest object for the current Web request.
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
Property Value
The HttpRequest object associated with the Page that contains the UserControl instance.
- Attributes
Examples
The following example uses the Request property to obtain the physical path of the user control. 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)