home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 September / PCWorld_2000-09_cd.bin / Software / Topware / aspedit / _SETUP.1 / cookielib_sample.asp < prev    next >
Text File  |  1999-09-09  |  399b  |  17 lines

  1. <% response.buffer=true 
  2. <!--#include file="cookielib.asp"-->
  3. %>
  4.  <html>
  5.   <head>
  6.    <TITLE>Cookie Lib Sample</TITLE>
  7.     <body bgcolor="#FFFFFF">
  8.   </head>
  9.  <%
  10.  Call AddCookie("Person", "Firstname", "Mickey", 365)
  11.  Call AddCookie("Person", "LastName", "Mouse", 365)
  12.  response.write GetCookie("person","firstname")
  13.  response.write GetCookie("person","lastname")
  14.  %>
  15.  </body>
  16. </html>
  17.