Copy link to clipboard
Copied
Hi,
I am trying to store the content that cfmodule displays on the page to a cf variable.
<cfmodule template="mypage.cfm" attributes="attr_1">
can I store the data coming from the mypage.cfm into a variable
if not from cfmodule, is there any other tag that does this ?
Thank you
Yes, you can simply wrap your CFMODULE (or anything else that generates output) with the CFSAVECONTENT tag.
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/
Copy link to clipboard
Copied
Yes, you can simply wrap your CFMODULE (or anything else that generates output) with the CFSAVECONTENT tag.
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/
Copy link to clipboard
Copied
Dave,
that is exactly what I am looking for.
thanks a lot