In a Fusebox ColdFusion app I'm writing, I CFINCLUDE a file called
dsp_getTool.cfm into a index.cfm as you can see from the CFSWITCH contained
in that index.cfm below.

<CFSWITCH EXPRESSION="#attributes.fuseaction#">
        
        <CFCASE VALUE="getTool">
                <CFINCLUDE TEMPLATE="dsp_getTool.cfm">
        </CFCASE>
        
        <CFCASE VALUE="mainIndex">
                <CFLOCATION URL="../index.cfm" ADDTOKEN="Yes">
        </CFCASE>
</CFSWITCH>

In dsp_getTool.cfm I have some links that go to named anchors (<a name=>)
within dsp_getTool.com.  This seems to generate invalid URLs in the form of
http://somecompany.com/dir/dir1/#anchor
<http://somecompany.com/dir/dir1/#anchor> .  And it does that even though I
called the page using the full path including the full file name (i.e., I
didn't depend on "default document" help from the server).

What causes this and what can I do to avoid it?

------------------------------------------------------------------------------
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