Page.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 associated with the Page object. This object allows you to send HTTP response data to a client and contains information about that response.
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 current HttpResponse associated with the page.
- Attributes
Exceptions
The HttpResponse object is not available.
Examples
The following code example demonstrates creating a cookie and adding it to the page's HTTP output by using the HttpResponse object.
HttpCookie MyCookie = new HttpCookie("LastVisit");
DateTime now = DateTime.Now;
MyCookie.Value = now.ToString();
MyCookie.Expires = now.AddHours(1);
Response.Cookies.Add(MyCookie);
Dim MyCookie As New HttpCookie("LastVisit")
Dim now As DateTime = DateTime.Now
MyCookie.Value = now.ToString()
MyCookie.Expires = now.AddHours(1)
Response.Cookies.Add(MyCookie)