Make sure you have session management activated...then

<cfdirectory name="queryName" ...>

<!--- Create a new structure for each column of info you want --->
<cfset Session.stDirFileName = StructNew()>
<cfset Session.stDirFileSize = StructNew()>

<cfset RecNo=1><!--- set an index counter --->
<cfoutput query="queryName">
    <cfset stDirFileName[RecNo] = Name>
    <cfset stDirFileSize[RecNo] = Size>
    ...
    <cfset RecNo=RecNo + 1>
</cfoutput>

Then on your other template page...

The directory listing is:<br>
<!--- loop from 1 to the number of keys in the structure --->
<cfloop index="RecNo" from=1 to=#ListLen(StructKeyList(stDirFileName))#>
    #stDirFileName[RecNo]# #stDirFileSize[RecNo]#<br>
</cfloop>

Give that a whirl...this has not been tested, but should give you the idea
on how to complete it.

Bruce
[EMAIL PROTECTED]

----- Original Message -----
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, September 24, 2001 10:32 AM
Subject: Re: Passing the results from the <CFDIRECTORY to another template?


> At 10:28 AM 9/24/01 -0700, you wrote:
> >There are multiple ways to pass it.  What directory info are you wanting
to
> >pass?
>
>
> All the information from the <CFDIRECTORY> Name, Type etc.
>
> >You can pass info from one template to another via:
> >     Session vars
> >     Client vars
> >     Application vars
> >     Form fields
> >     URL parameters
> >     etc
> >
> >You may want to store the directory info you want into a structure or
array,
> >scope it as a Session variable, then reference it on the next template.
>
> Yikes. How do I do that?
>
>
> >Bruce
> >[EMAIL PROTECTED]
> >
> >----- Original Message -----
> >From: <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Monday, September 24, 2001 10:00 AM
> >Subject: Re: Passing the results from the <CFDIRECTORY to another
template?
> >
> >
> > > How can I pass the results from the <CFDIRECTORY to another template?
> > >
> > > Name
> > > Size
> > > Type..etc
> > >
> >
> 
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to