Ask a Question related to Macromedia ColdFusion, Design and Development.
-
Meltech #1
pulling filename into a variable...
is there a way I can set a variable value for the filename of a cfml template?
for exampel for the cfml template:
[url]http://www.testsite.com/test.cfm[/url]
<cfset Variables.CurrrentFileName = "test">
I need a way to make setting Variables.CurrentFileName dynamic.
Thanks
I can have a variabl
Meltech Guest
-
Pulling data across domains
Hello. I have hit a real deadend with this problem. I would appreciate some help. I have designed a website in Flash... -
Pulling Flash from a CD
I am to be submitting a portfolio of my work on CD format. I want to have it so that when the viewer clicks a link on my intro presentation, it will... -
Pulling from Database
ok, Im a newbie but... I have an Access DB with products set up in different categories. On my index page, I want to pull the names of the... -
Pulling images on the fly
I'm wondering if there is any way to have Flash pull a number of photo filenames from a DB, and rotate the appropriate photos (fading in & out). So... -
NET::HTTP, LWP and XML - pulling my hair out!!!
Hello I've been trying to read an http request of an XML formatted document. I am having no luck! Here's the scenario (my scripts are posted... -
mxstu #2
Re: pulling filename into a variable...
<!--- get current template file name --->
<cfset currFileName = GetFileFromPath(GetCurrentTemplatePath())>
<!--- remove file name extension --->
<cfset pos = Find(".", Reverse(currFileName))>
<cfif pos gt 0>
<cfset currFileName = Left(currFileName, Len(currFileName)-pos)>
</cfif>
<cfoutput>#currFileName#</cfoutput>
mxstu Guest



Reply With Quote

