Yavuz SERT wrote:

> hi
> 
> i'm using axkit with sablot.
> it is working but i want outputs in iso8859-9 character set. in the source
> of html, character set is UTF8, how can i change it to iso8859-9?
> 
> thanks
> 
> yavuz
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.251 / Virus Database: 124 - Release Date: 4.26.2001
> 

hi,
set attribute encoding of <xsl:output>, like as attached example.

pajout


<?xml version='1.0' encoding="iso-8859-2"?>
<xsl:stylesheet version='1.0' 
  xmlns:xsl='http://www.w3.org/1999/XSL/Transform'

  <xsl:output method='html'
              encoding='iso-8859-9'
              />

 <xsl:template match='/'/>
</xsl:stylesheet> 

Reply via email to