Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Browser Inserting META Tab in XSLT File

Status
Not open for further replies.

rackman99

Programmer
Sep 16, 2002
29
GB
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=&quot;text/css&quot;>
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=&quot;Content-Type&quot; Content=&quot;text/html; charset=UTF-16&quot;>

<style type=&quot;text/css&quot;>
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 ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top