Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 3.47 KB

HttpRequest-Cookies-Property.md

File metadata and controls

67 lines (49 loc) · 3.47 KB

Source

HttpRequest.Cookies Property (System.Web)

Gets a collection of cookies sent by the client.

Namespace: System.Web
Assembly: System.Web (in System.Web.dll) ##Syntax public HttpCookieCollection Cookies { get; }

####Property Value Type: System.Web.HttpCookieCollection

An HttpCookieCollection object representing the client's cookie variables.

##Remarks ASP.NET includes two intrinsic cookie collections. The collection accessed through the Cookies collection of HttpRequest contains cookies transmitted by the client to the server in the Cookie header. The collection accessed through the Cookies collection of HttpResponse contains new cookies created on the server and transmitted to the client in the Set-Cookie header.

After you add a cookie by using the HttpResponse.Cookies collection, the cookie is immediately available in the HttpRequest.Cookies collection, even if the response has not been sent to the client.

The following code example loops through all cookies sent by the client and sends the name, expiration date, security parameter, and values of each cookie to the HTTP output.

int loop1, loop2;
HttpCookieCollection MyCookieColl;
HttpCookie MyCookie;

MyCookieColl = Request.Cookies;

// Capture all cookie names into a string array.
String[] arr1 = MyCookieColl.AllKeys;

// Grab individual cookie objects by cookie name.
for (loop1 = 0; loop1 < arr1.Length; loop1++)
{
   MyCookie = MyCookieColl[arr1[loop1]];
   Response.Write("Cookie: " + MyCookie.Name + "<br>");
   Response.Write ("Secure:" + MyCookie.Secure + "<br>");

   //Grab all values for single cookie into an object array.
   String[] arr2 = MyCookie.Values.AllKeys;

   //Loop through cookie Value collection and print all values.
   for (loop2 = 0; loop2 &lt; arr2.Length; loop2++)
   {
      Response.Write("Value" + loop2 + ": " + Server.HtmlEncode(arr2[loop2]) + "<br>");
   }
}

##Version Information .NET Framework
Available since 1.1

##See Also

ValidateInput
Form
QueryString
HttpRequest Class
System.Web Namespace