Types of cookies in ASP.NET

Explain the types of cookies in ASP.NET.

There are two types of cookies in ASP.NET

Single valued cookies

Example:
request.cookies(”UserName”).value=”myCookies”

Multivalued cookies

Example:
request.cookies(”CookiName”)(”UserName”)=”Lucky”
request.cookies(”CookiName”)(”UserID”)=”1234?
Ways to retain variables between requests - ASP.NET
ASP.NET - ways to retain variables between requests - Following are the ways to retain variables between requests:....
What are Cookies collection in ASP.NET?
ASP.NET - What are Cookies collection in ASP.NET? - Cookies are text files that store information about the user...
What is the Common Language Specification (CLS)?
ASP.NET - Common Language Specification (CLS) - The CLS contains constructs and constraints which provides a guideline for library and compiler writers.....
Post your comment