> The html form that I wrote was NOT extract from login.aspx > Both html form and cfhttp is to submit to action page > login.aspx but the html does it successfully and the > cfhttp does not.
Here's what you need to do. Run the form, and examine all of the information sent from the form to the action page. Then, make sure that your CFHTTP request sends all of that information. This will often be more than just the data within the form fields. It may include CGI variables and cookies that are set on or prior to the form. If any of them are set on the form itself, other than the form fields, you may need to use CFHTTP twice - the first time to fetch the form itself, from which you'd pull the cookies or other things in question, and the second time to send your form data along with these other tokens to the action page. It doesn't matter whether the form and action URLs are the same or different, you still might have to do this either way. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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:259040 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

