A better approach to sharing lots of data between your two pages might be to use the session scope.
You have to have session variables enabled in cfadmin and in your <cfapplication> In the first page you can <cfset session.dclist = dclist> you need to set addtoken=yes to maintain the session (yes is the default) in the second page you can access session.dclist or maybe <cfset request.dclist = session.dclist> You may have to consider locking around session variable <cfsets>. If I'm telling you obvious stuff you already know then just ignore me! :-) On 1/19/06, Pete Ruckelshaus <[EMAIL PROTECTED]> wrote: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230006 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=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

