Hello,

I am trying to do this from a child fuse app, in its index.cfm

<cfswitch expression="#ListLast(attributes.fuseaction,".")#">
        <cfcase value="SiteMgrToolkit">
                <cflocation url="../index.cfm?fuseaction=#fuseaction#" addtoken="Yes">
        </cfcase>
        <cfdefaultcase>
                <cfinclude template="dsp_corp_reg_main.cfm">
        </cfdefaultcase>
</cfswitch>

As you can see, in the first "case" clause, I am breaking out of the current
sub app and am trying to redirect to another app through the parent
index.cfm. However, this does not work, I am getting an IE error (not a CF
error), that a page is not available. I am running CF4.5 Eval and PWS on an
NT workstation. Here's what's in the parent index.cfm:

<cfswitch expression="#ListFirst(attributes.fuseaction,".")#">
        <cfcase value="Toolkit">
                <cflocation url="toolkit/index.cfm" addtoken="Yes">
        </cfcase>
        <cfdefaultcase>
                <cflocation url="welcome/index.cfm" addtoken="Yes">
        </cfdefaultcase>
</cfswitch>

Thanks for any tips!

------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to