//Asp.net
//read
Request.cookies ("test"). Value;
//write
Var cookie: httpcookie = new httpcookie ("test");
Cookie .Value = "abc";
Response.cookies.add (cookie);
// ASP
//read
Request.cookies ("Test");
//write
Response.cookies ("Test"
) = "abc";
// If the cookie is created for the ASP, you need to decode the following method in .NET, otherwise there will be garbled problems.
System.Web.httputility.urdecode (c, system.text.encoding.default);