Hi Ron,

You have to execute the tag based on the thistag.executionmode variable.

In your custom tag, when you call <CF_PARAGRAPH> <-- opens the tag,
thistag.executionmode is set to "Start", so you'd spit out the table up to
the point where your content begins.  Then when </CF_PARAGRAPH> executes,
thistag.executionmode is set to "end", where you'd spit out the closing tags
for your table.  Example:

<cfif thistag.executionmode eq "Start">

        <table>
        <tr>
      <td>
</cfif>

<cfif thistag.executionmode eq "end">
        </td>
        </tr>
        </table>
</cfif>

So when you wrap content with the tag like in your example, you'd get the
resulting HTML:

        <table>
        <tr>
      <td>
<P>Body text goes here. And I want to use characters like "
and ' without having to use their html code.</P>
        </td>
        </tr>
        </table>

-----Original Message-----
From: Gallant, Ron [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 16, 2001 8:21 AM
To: Fusebox
Subject: HEADER custom tag



<CF_PARAGRAPH>
                <P>Body text goes here. And I want to use characters like "
and ' without having to use their html code.</P>
</CF_PARAGRAPH1>



Thank you,

Ron Gallant


Blue Cross Blue Shield of Florida, Inc., and its subsidiary and
affiliate companies are not responsible for errors or omissions in this
e-mail message. Any personal comments made in this e-mail do not reflect the
views of Blue Cross Blue Shield of Florida, Inc.




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to