Hi People,
When applying a XSLT file to a XML file that calls a SQL procedure via IIS, something (I guess the browser) is inserting a META Tag in the <head> line i.e
This
<head>
<style type="text/css">
table.grey {background-color: #D3D3D3}
table.white {background-color: #ffffff}
p {font-size: 70%}
td {font-size: 70%}
th.a {Height: 10%}
</style>
</head>
becomes
<head>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=UTF-16">
<style type="text/css">
table.grey {background-color: #D3D3D3}
table.white {background-color: #ffffff}
p {font-size: 70%}
td {font-size: 70%}
th.a {Height: 10%}
</style>
</head>
which cant be displayed.
Any thought ?
When applying a XSLT file to a XML file that calls a SQL procedure via IIS, something (I guess the browser) is inserting a META Tag in the <head> line i.e
This
<head>
<style type="text/css">
table.grey {background-color: #D3D3D3}
table.white {background-color: #ffffff}
p {font-size: 70%}
td {font-size: 70%}
th.a {Height: 10%}
</style>
</head>
becomes
<head>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=UTF-16">
<style type="text/css">
table.grey {background-color: #D3D3D3}
table.white {background-color: #ffffff}
p {font-size: 70%}
td {font-size: 70%}
th.a {Height: 10%}
</style>
</head>
which cant be displayed.
Any thought ?