> <CFCOOKIE NAME="date" VALUE="#DateFormat(Now(), "MM/DD/YYY")">
> <CFLOCATION URL="adminhome.cfm" ADDTOKEN="NO">

CF doesn't support using CFCOOKIE and CFLOCATION in the same page.
Typically, CFLOCATION will override CFCOOKIE.

Your alternatives are to use JavaScript to handle changing the location:

<script language="JavaScript">
<!--
window.location = 'adminhome.cfm';
// -->
</script>

or to use a META REFRESH tag in the page from which you want to redirect.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to