----- Original Message -----
From: "Russ" <[EMAIL PROTECTED]>
> Everytime I attempt to add a target="<whatever>" to a CFLOCATION URL, I
> get an error, but my form is in an iFrame and I need to redirect into
> the "_top" or "_parent".
----------------------------

You're forgetting that CFLOCATION is a server-side action. The TARGET
attribute is for tags in HTML on the client-side.

If you submit a form that's inside any kind of frame, the response page
should automatically be loading into the same frame. Unless of course you
use the TARGET attribute in your FORM tag... If you have a form inside a
frame, and you want the response page to open up to occupy the full browser
view port, not just the frame, try:

<form action="processForm.cfm" target="_top">
    ...
</form>

HTH,

- Gyrus

~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- [EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://www.norlonto.net
- PGP key available
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Reply via email to