home *** CD-ROM | disk | FTP | other *** search
- <%
- '*******************************************************
- '* ASP 101 Sample Code - http://www.asp101.com *
- '* *
- '* This code is made available as a service to our *
- '* visitors and is provided strictly for the *
- '* purpose of illustration. *
- '* *
- '* Please direct all inquiries to webmaster@asp101.com *
- '*******************************************************
- %>
-
- This table lists all of our cookies on your computer.<BR>
-
- <BR>
-
- <!-- 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>
-