Request.Cookies collection

Potentially two-dimensional read-only collection of persistant client values.

Usage

value= Request.Cookies(name) ' get a one-dimensional persistant client value
twodim= Request.Cookies(name).HasKeys ' check to see if the cookie is two-dimensional
value= Request.Cookies(name)(key) ' get a two-dimensional persistant client value

Details

Any cookies passed to the client from the server are provided in this collection.

This collection contains a list of IStringList collection items.