62,263
社区成员
发帖
与我相关
我的任务
分享
HttpCookie cookies_username = new HttpCookie("username");
cookies_username.Value = Server.UrlEncode(username);
cookies_username.Expires = DateTime.Now.AddDays(10);
Response.AppendCookie(cookies_username);
Request.Cookies["username"].Value.ToString();