> > Just Use ...
> >
> > <CFOUTPUT query="GetMarkets">
> > <a href="###GetMarkets.id_market#">#GetMarkets.market_name#
> > </font></a><BR>
> > </cfoutput>
> 
> I'd appreciate an explanation of this one.
> I don't understand what's going on.

What's going on here is that, if you want to provide a link to another spot
within the same page, you'll need to build a URL fragment using the hash
(#). For example, you might have an HTML page like this:

<a name="topofpage">Top of Page</a>

... lots of HTML stuff ...

<a href="#topofpage">Go to Top</a>

You might also want to dynamically build URL fragments in CF. Of course,
within your CFOUTPUT, you can't use a single hash, so you'll need to escape
it. In the example at the top of the page, the first two hashes are used to
output a single hash to the HTML page.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to