Hi,
I wrote a tpl which is opening a database connection and fetching values from table. I am printing these values into aspx pages. All datas are printing fine in resulting page but the coulmns which are having special characters like ® or © are giving null values.
Below is TPL code :
database.lib file is having all database details.
print "Content-type: text/html; charset=utf-8\n";
require "C:\\Interwoven\\TeamSite\\httpd\\iw-bin\\jppl\\database.lib";
use DBI;
use utf8;
use Encode;
use HTML::Entities;
$ENV{'NLS_LANG'} = ".UTF8";
my $dbh=&connectDB();
I also tried with other encoding as well but no luck.
I am using Teamsite version 7.4.1 installed on windows 2012 server.
My databse is SQL installed on windows server.
Any help would be apprciated.
Thanks,
Niraj Kumar