Re: including into a cfset

2006-09-05 Thread daniel kessler
This worked great. The main reason is that I wanted it to work with something that already exists. I am putting up a placeholder site and using components from another site/application. All this will be redone in a few months and it will be it's own application then. > > > > > >Adrian

Re: including into a cfset

2006-09-05 Thread Jim
erm, maybe i've not understood, but if you set a variable in your include then it will exist after the include? Testinclude.cfm #isdefined("page_location")# #isdefined("page_location")# --- departname_name.cfm

RE: including into a cfset

2006-09-05 Thread Bobby Hartsfield
#myvar# ..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 05, 2006 10:43 AM To: CF-Talk Subject: including into a cfset okay, I'm sure this is cause I'm just not thinking

RE: including into a cfset

2006-09-05 Thread Bobby Hartsfield
..:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 05, 2006 10:43 AM To: CF-Talk Subject: including into a cfset okay, I'm sure this is cause I'm just not thinking right this

RE: including into a cfset

2006-09-05 Thread Andy Matthews
Subject: RE: including into a cfset Dude, Just set the variable name into an application-level variable: .. Then use . Or something to that effect. No need to keep it in a file. Ben Nadel www.bennadel.com Certified Advanced ColdFusion Developer Need Help

RE: including into a cfset

2006-09-05 Thread Brad Wood
I would just go back to bed. :) Just kidding... I'm not quite sure why you don't just set that string in a variable and simply output the variable as opposed to including an entire file just for three words. The proper syntax for what you had would be: "> But I really doubt that is what you wan

RE: including into a cfset

2006-09-05 Thread Adrian Lynch
Not sure about your reasons, but you can do: Adrian -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: 05 September 2006 15:43 To: CF-Talk Subject: including into a cfset okay, I'm sure this is cause I'm just not thinking right this morning, but I've s

RE: including into a cfset

2006-09-05 Thread Ben Nadel
Dude, Just set the variable name into an application-level variable: . Then use Or something to that effect. No need to keep it in a file. ... Ben Nadel www.bennadel.com Certified Advanced ColdFusion Developer Need Help? www.bennadel.com/ask-ben/ -O