Rick Faircloth wrote: > The calling page isn't refreshing, it's just having the content *added* > to the page via jquery.
JQuery is *NEVER* going to have access to read or write ColdFusion session data. ColdFusion session data is on the server and JQuery is on the client and they do not share memory, they don't share anything. One must always remember that CF is on the server and JavaScript is on the client and never to the twain meet. They can only pass data back and forth with HTTP requests and responses weather that is done behind the scenes with JavaScript httpRequestObjects or by the browser making a completely new request itself. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322065 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

