RE: sharing a structure with the calling template

2001-07-15 Thread Rich Tretola
OK here is my question. I would like to run an application with several accounts sharing the same code based on their id. I know that I could simply include the id in each url like http://www.whatever.com/?id=#id# but I would really like a cleaner look like http://www.whatever.com/#id# Is

Re: sharing a structure with the calling template

2001-07-14 Thread Jochem van Dieten
Chris Giminez wrote: What's the best way to share a structure that is created in a custom tag with the calling template. Apparently it's not permitted to use cfset caller.mystructure = #mystructure# Try cfset caller.mystructure = Duplicate(mystructure) or else use the request scope.

RE: sharing a structure with the calling template

2001-07-13 Thread Jann VanOver
Did you try: cfset caller.mystructure = mystructure ?? or cfset caller.mystructure = #mystructure# ?? -Original Message- From: Chris Giminez [mailto:[EMAIL PROTECTED]] Sent: Friday, July 13, 2001 2:11 PM To: CF-Talk Subject: sharing a structure with the calling template What's the

Re: sharing a structure with the calling template

2001-07-13 Thread Tom Davison
Dont you have to point it to a resource scope? - Original Message - From: Chris Giminez [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, July 13, 2001 4:10 PM Subject: sharing a structure with the calling template What's the best way to share a structure that is created in