Ditto ... I like this:
<cfscript>
if (thisTag.executionMode EQ "start") {
caller.attributes = StructNew();
if (isDefined("url")) {
if (isStruct(url)) {
for (itemURLParam in url)
evaluate("caller.attributes.#itemURLParam# =
url.#itemURLParam#");
}
}
if (isDefined("form")) {
if (isStruct(form)) {
for (itemFormParam in form)
evaluate("caller.attributes.#itemFormParam# =
form.#itemFormParam#");
}
}
}
</cfscript>
Simple ... and works without all the other overhead in the official tag.
Plus it's way faster (as in no comparison).
-----Original Message-----
From: paul smith [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 4:31 PM
To: Fusebox
Subject: Re[2]: search engine safe and sp6a.
I don't use cf_formurl2attributes.cfm (couldn't get it to work)
I code my own.
best, paul
At 11:57 AM 12/7/00 -0500, you wrote:
>How exactly does one 'turn on' search friendly URL's??
>
>I've seen some reference to it in cf_formurl2attributes.cfm but what
>do I need to do to actually use them?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists