ASP Cookie(쿠키) 예제

By | 7월 14, 2008

<%
 Response.Charset = "euc-kr"

 Response.Cookies("Login")("아이디") = "bruce"
 'Login 이라는 쿠키변수의 아이디 라는 하위쿠키변수에 bruce 를 저장한다.
 Response.Cookies("Login")("패스워드") = "1111"

 Response.Cookies("Bruce").Expires = #09/05/2008#
 '쿠키의 소멸일자 지정
 Response.Cookies("Bruce").Path = "/test/Cookie"
'쿠키의 경로 설정

 Response.Write Request.Cookies("Login") & "<br><br>"
 'Login 이라는 쿠키변수에 저장된 모든 값을 읽어 출력한다.

 For Each strLog In Request.Cookies
 'Request 객체에서 쿠키들을 가져와 각각의 쿠키를 strLog 에 한번씩 대입한다.
    If Request.Cookies(strLog).HasKeys Then
    'strLog 쿠키가 하위항목을 가지고 있는지 검사한다.
     For Each strSubLog In Request.Cookies(strLog)
     '하위 항목을 가지고 있을 경우 루프를 돌며 각각의 하위 항목을 strSubLog에 대입한다.
      Response.Write strSubLog & " : " &_ 
      Request.Cookies(strLog)(strSubLog) & "<br>"
      ' 하위항목의 이름과 값 출력, 윗윗줄에 붙은 언더바의 의미는?
     Next
   End If
 Next

%>

Category: ASP
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments