> That is what I mean. It submits inside the cfdiv, show the target page > pulls up completely inside the cfdiv. I want it to pull up on a new page. > I changed the cfform to just use form and that fixed it for me, but I didn't > need any cfform goodness this time. I did breifly test your _top suggestion > and that didn't make a difference when I was still using CFFORM.
It turns out that CFFORM doesn't appear to support the TARGET attribute any more, according to the documentation. It used to circa CF 6.1. However, you can use JavaScript to set the TARGET attribute for your form. Your code would look something like this: <cfform> </cfform> <script> document.forms[0].target = "_top"; </script> Note that I haven't actually tested this code. Good luck! 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 informati ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328388 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

