2010-06-07 7 views

답변

1
A cookie is a small bit of text that accompanies requests and pages as they go between the Web server and browser. The cookie contains information the Web application can read whenever the user visits the site. 

예를 따르 ...

에는 Response.Cookies = "존"[ '사용자 이름 "] 값.; Response.Cookies [ "userName"]. Expires = DateTime.Now.AddDays (1);

HttpCookie aCookie = 새로운 HttpCookie ("lastVisit"); aCookie.Value = DateTime.Now.ToString(); aCookie.Expires = DateTime.Now.AddDays (1); Response.Cookies.Add (aCookie);

관련 문제