UserControl.Response 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 HttpResponse object for the current Web request.
public:
property System::Web::HttpResponse ^ Response { System::Web::HttpResponse ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Web.HttpResponse Response { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Response : System.Web.HttpResponse
Public ReadOnly Property Response As HttpResponse
Property Value
The HttpResponse object associated with the Page that contains the UserControl instance.
- Attributes
Examples
The following example uses the Response property to write the name of the Web server computer on which the user control is running. The myControl.Response.Write
syntax instructs the user control to display the information the control obtains with the myControl.Server.Machinename
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)