asp cookie的用法与时间设置

作者:袖梨 2022-06-29

<%
dim x,y

 for each x in Request.Cookies
  response.write("

")
  if Request.Cookies(x).HasKeys then
    for each y in Request.Cookies(x)
      response.write(x & ":" & y & "=" & Request.Cookies(x)(y))
      response.write("
")
    next
  else
    Response.Write(x & "=" & Request.Cookies(x) & "
")
  end if
  response.write "

"
next
%>

相关文章

精彩推荐