Explain the types of cookies in ASP.NET.
There are two types of cookies in ASP.NET
Single valued cookiesExample:request.cookies(”UserName”).value=”myCookies”
Multivalued cookiesExample:request.cookies(”CookiName”)(”UserName”)=”Lucky”
request.cookies(”CookiName”)(”UserID”)=”1234?