TeamSite 6.7.1
Windows 2003
I am dynamically writting my DCT elements using an inline. These elements need to be populated with English and French text.
I can't get special characters from the inline into the default tag of the text fields.
I've tried passing the special characters as themselves (
À[size=2]) and as html entities (À). I've tried putting cdata tags around the text in the xml tags. Nothing works.[/size]
[size=2]Code from DCT:[/size][HTML]
Site Information Architecture
[/HTML]
code from inline:
[HTML]#!E:\iw-home/iw-perl/bin/iwperl
use strict;
#---------------------------------------------------------------------
# Code body starts now
#---------------------------------------------------------------------
my $DCTCode;
$DCTCode = '';
$DCTCode .= '
';
$DCTCode .= '';
$DCTCode .= '
';
$DCTCode .= 'À propos de nous';
$DCTCode .= '';
print '';
print '';
print $DCTCode;
print '';
exit(0);
[/HTML]
Image of results:

Any suggestions how to make this work?
Thanks