Question
how to use cfquery result in other page?
hi,
i have a big big query in pageA.cfm ,for example
<cfquery name="rsGetStudent" datasource="#str_conn#" cachedwithin="#CreateTimeSpan(0, 0, 30, 0)#" >
select * from student_all
where 1=1
#SQLFilteringDependOnUser#
</cfquery>
this query will return about 100,000 row.
i want to take the result in query "rsGetStudent" to page B. how do i do that?
using session?
using URL parameter?
any suggestion?
thank you....
