Page.Request Property
Gets the HttpRequest object for the requested page.
Assembly: System.Web (in System.Web.dll)
| Exception | Condition |
|---|---|
| HttpException | Occurs when the HttpRequest object is not available. |
The HttpRequest object contains information about the current HTTP request.
The following example demonstrates how to obtain the Headers collection from the HttpRequest object and write it to an ASP.NET page.
int loop1, loop2; NameValueCollection coll; // Load Header collection into NameValueCollection object. coll=Request.Headers; // Put the names of all keys into a string array. String[] arr1 = coll.AllKeys; for (loop1 = 0; loop1<arr1.Length; loop1++) { Response.Write("Key: " + arr1[loop1] + "<br>"); // Get all values under this key. String[] arr2=coll.GetValues(arr1[loop1]); for (loop2 = 0; loop2<arr2.Length; loop2++) { Response.Write("Value " + loop2 + ": " + Server.HtmlEncode(arr2[loop2]) + "<br>"); } }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.