Does anyone know how to manage libraries in Dreamweaver for CommonSpot? (I'm very new to CommonSpot).
CommonSpot is returning an error wherever I use #
symbol. Somehow I managed to remove all of the #
symbols from the libraries. But I want to create libraries in Dreamweaver which defines a library as starting with:
<!-- #BeginLibraryItem ...
This causes a problem because of the #
symbol.
Does CommonSpot have anything like library? Or are there any escape characters I can use to achieve this?
CF must be evaluating the comment. Here are a couple ideas.
If currently this
<cfoutput>
...
<!-- #BeginLibraryItem ... -->
...
</cfoutput>
try this
<cfoutput>
...
</cfoutput>
<!-- #BeginLibraryItem... -->
<cfoutput>
...
</cfoutput>
like so...
<!--- #BeginLibraryItem ... --->