欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何获知所有的Cookie?

程序员文章站 2023-01-25 15:56:52
1.撼雪喷云之显示cookie    &nb...

1.撼雪喷云之显示cookie

<table border="2">
      <thead>
            <th>cookie
</th>
            <th>cookie
</th>
            <th>
删除cookie</th>
      </thead>
<%
dim item

      %>
      <tr>
            <td><% = item %></td>
            <td><% = request.cookies(item) %></td>
            <td><a href="cookie_process.asp?name=<%=
server.urlencode(item) %>">
删除</a></td>

' 循环检查,收集request.cookies里的每一个cookie并显示出来.

</tr>
      <%
next
%>
</table>

2.撼雪喷云之添加cookie
<form action="cookie_process.asp" method="get">
<table border="0" cellspacing="0" cellpadding="0">
      <tr>
            <td>cookie
:</td>
            <td>cookie
:</td>
            <td></td>
      </tr>
      <tr>
            <td><input type="text" name="name"></input></td>
            <td><input type="text" name="value"></input></td>
            <td><input type="submit" value="
添加"></td>
      </tr>
</table>

</form>