User Guide

32 CFML Language Reference
<!--- show the most recent cookie set --->
<CFIF IsDefined("Cookie.LastAOLVisitor") is "True">
<P>The last AOL visitor to view this site was
<CFOUTPUT>#Cookie.LastAOLVisitor#</CFOUTPUT>, on
<CFOUTPUT>#DateFormat(COOKIE.TimeVisited)#</CFOUTPUT>
<!--- use this link to reset the cookies --->
<P><a href="cfcookie.cfm?delcookie=yes">Hide my tracks</A>
<CFELSE>
<P>No AOL Visitors have viewed the site lately.
</CFIF>
</BODY>
</HTML>