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 >
Wrap
Text File
|
1999-09-09
|
399b
|
17 lines
<% 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>