home *** CD-ROM | disk | FTP | other *** search
- <% response.buffer=true
- <!--#include file="cookielib.asp"-->
- %>
- <html>
- <head>
- <TITLE>Cookie Lib Sample</TITLE>
- <body bgcolor="#FFFFFF">
- </head>
- <%
- Call AddCookie("Person", "Firstname", "Mickey", 365)
- Call AddCookie("Person", "LastName", "Mouse", 365)
- response.write GetCookie("person","firstname")
- response.write GetCookie("person","lastname")
- %>
- </body>
- </html>
-