>       <cfcookie name="EMAIL" value="#Form.UserName#" 
> expires="#CreateTimeSpan(0,12,0,0)#">
>       <CFOUTPUT QUERY="AuthUser" maxrows="1">
>               <cfcookie name="FirstName" value="#FirstName#" 
> expires="#CreateTimeSpan(0,12,0,0)#">
>       </CFOUTPUT>
> 
>       <cfif form.OriginalURL EQ "Page=LastStep">
>               <cflocation url = "#application.VirtualDirectory#" addToken = 
> "No">
>       <cfelse>
>               <cflocation url = 
> "#application.VirtualDirectory#?#form.OriginalURL#" addToken = "No">
>       </cfif>

Here be the problem, matey.  You're setting cookies then cflocationing. 
  When you cflocation, the cookies cannot be read by the page you 
redirect to.  Workarounds might include using a JS or META redirect, or 
using client or session vars instead and using addtoke="yes".

HTH.

--Ben


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185846
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to