The way I did is use cfhttpparam type="cookie" to send cookie information back to the asp.net but it doesn't seem to work.
-----Original Message----- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Saturday, 4 November 2006 2:25 AM To: CF-Talk Subject: RE: Using CFHTTP to login Michael, You are going to have to "get" the cookie scope from your browser and send it along with the page. 1) Create an ASPX page that loops through the cookie scope and sets Javascript variables. 2) Embed the ASPX page as a Javascript on your CF page (<script src="mypage.aspx"/>) 3) copy the JS variables into the form scope using javascript and post them to your CF handler 4) Send them back as cookies in your CFHTTP post... It's also possible that simply embedding the js/aspx into the CF page will set the appropriate cookies and you won't need any JS... They will exist as cookies in your CF cookie scope and your code below would work. I'm going to bet that would work differently in different browsers though. -Mark ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:259061 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

