UserControl.Response Property

Definition

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)

Applies to

See also