I think what Lucas means is doing the following will allow you to use cfflush inside your custom tag:
<cf_mytag mode="start">
The code to go in the middle here
<cf_mytag mode="end">
and in your custom tag have something like this:
<cfswitch _expression_="#thisTag.mode#">
<cfcase value="start">
<html>
<head>
<title></title>
</head>
<body>
</cfcase>
<cfcase value="end">
</body>
</html>
</cfcase>
</cfswitch>
<cfcase value="start">
<html>
<head>
<title></title>
</head>
<body>
</cfcase>
<cfcase value="end">
</body>
</html>
</cfcase>
</cfswitch>
Just my interpretation.
Shane
---
You are currently subscribed to cfaussie as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/
