You may have a version of <CF_FORMURL2ATTRIBRUTES> that includes a section
at the end of the tag that starts with "<CFIF Attributes.DisplayBase>"

The code that follows it (up to the following </CFIF>) causes problems for
intrapage links.  You can either call the tag like this:
<CF_FORMURL2ATTRIBRUTES DisplayBase="NO"> to turn off the code or remove it.

According to the Fusebox book, the only code that the custom tag needs is:

<CFSETTING enablecfoutputonly="yes">
<CFIF isdefined("cgi.query_string")>
  <CFLOOP list="#cgi.query_string#" delimiters="&" index="valuepair">
    <CFSET URLName = "#ListGetAt(valuepair, 1, "=")#">
    <CFIF NOT ISDEFINED( 'ATTRIBUTES.' & URLname )>
      <CFSET SetVariable("caller.attributes.#urlname#" ,
"#evaluate("URL."&"#URLname#")#")>
    </CFIF>
  </CFLOOP>
</CFIF>
<CFIF isdefined("form.fieldnames")>
  <CFLOOP list="#form.fieldnames#" index="field">
    <CFIF NOT ISDEFINED( 'ATTRIBUTES.' & field )>
      <CFSET SetVariable("caller.attributes.#field#" ,
"#evaluate("form."&"#field#")#")>
    </CFIF>
  </CFLOOP>
</CFIF>
<CFSETTING enablecfoutputonly="no">


-----Original Message-----
From: Rosa, Issac [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 09, 2000 9:23 PM
To: Fusebox
Subject: Linking to another point on the same page

... When I click on the link, I get the following
error in NS - Directory Listing Denied.  Looking at the url that is
displayed, it is missing the file name before the anchor name.
------------------------------------------------------------------------------
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