✔ 最佳答案
你想從哪一種Programing Language 去使用cookie? e.g. JSP? PHP? ASP?
以下是ASP既做法:
<br>
<table BORDER="2">
<thead>
Cookie Name
Cookie Value
Delete Cookie
</thead>
<%
Dim Item
' Loop through the cookie collection displaying each cookie we find
For Each Item in Request.Cookies
%>
<tr>
<td><% = Item %></td>
<td><% = Request.Cookies(Item) %></td>
<td><a rel="nofollow">Delete this cookie!</a></td>
</tr>
<%
Next
%>
</table>
<table BORDER="0" CELLSPACING="0" CELLPADDING="0">
<tr>
<td>Cookie Name:</td>
<td>Cookie Value:</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>