请教cookie的 使用方法!
多谢!
例子用于接收cookies.
<!– cookie display table –>
<table border="2">
<thead>
<th>cookie name</th>
<th>cookie value</th>
<th>delete cookie</th>
</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 href="cookie_process.asp?name=<%= server.urlencode(item) %>">delete this cookie!</a></td>
</tr>
<%
next
%>
</table>
<!– cookie adding form –>
<form action="cookie_process.asp" method="get">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>cookie name:</td>
<td>cookie value:</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="add cookie!"></td>
</tr>
</table>
</form>
