Ann Harrell
|
| Posted: 08/10/2001, 2:08 PM |
|
Under page properties / header/footer I paste in this code:
<cfoutput>
<tr><td>#queryWobinfo.recordcount# records.</td></tr>
</cfoutput>
But the generated code adds a #
<cfoutput>
<tr><td>##queryWobinfo.recordcount## records.</td></tr>
</cfoutput>
If I enter it with no #, that's exactly what I get.
<cfoutput>
<tr><td>queryWobinfo.recordcount records.</td></tr>
</cfoutput>
This is version 1.1.16
Works fine once I take out the extra # sign.
Ann Harrell
|
|
|
 |
Ann Harrell
|
| Posted: 08/10/2001, 10:29 PM |
|
Something similar happening in 2.0 Beta 5. I'll double check and write it up
to support tomorrow when I'm awake.
Ann
"Ann Harrell" <ann@starband.net> wrote in message
news:9l1igd$vd4$1@news.codecharge.com...
> Under page properties / header/footer I paste in this code:
>
> <cfoutput>
> <tr><td>#queryWobinfo.recordcount# records.</td></tr>
> </cfoutput>
>
> But the generated code adds a #
>
> <cfoutput>
> <tr><td>##queryWobinfo.recordcount## records.</td></tr>
> </cfoutput>
>
> If I enter it with no #, that's exactly what I get.
>
> <cfoutput>
> <tr><td>queryWobinfo.recordcount records.</td></tr>
> </cfoutput>
>
> This is version 1.1.16
>
> Works fine once I take out the extra # sign.
>
> Ann Harrell
>
>
|
|
|
 |
|