I have a form inside a frameset and after posting the form and processing
the data I need to close the window and post back to the "opener".
I've used this in an action template before after processing a form
submission and it works nicely. But I'm trying to do a similar thing inside
a frameset and it doesn't want to close the window. :-(  Any ideas?
 <cfoutput>
 <html>
 <script language="JavaScript">
  function closeit() {
  window.opener.location="index.cfm?fuseaction=members.main";
  window.close();
  }
 </script>
 </cfoutput>
 <body onload="closeit()"></body>
 </html>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Reply via email to