1
Reply

How many types of cookies are there?

Nov 28, 2006
5.1k
0

    There are two type of cookeies.
    a) single valued eg request.cookies(”UserName”).value=”Vinod”
    b)Multivalued cookies. These are used in the way collections are used.
    e.g.
    request.cookies(”CookiName”)(”UserName”)=”Vinod”
    request.cookies(”CookiName”)(”UserID”)=”786?

    Note:No value method in multivalued cooki

    vinod 0
    November 28, 2006
    0