i have a long xml document just created by string builder with the starting tag like
<?xml version="1.0" encoding="UTF-8"?>
<xxxxxx>
..
</xxxxxx>
and i want to convert this xml to iso-8859-9 encoding type.
How can i do this?
Or anyone suggests me another way to create ISO-8859-9 encoding type xml in C#.
| ||||
|
feedback
|
|
I'd suggest that the most robust way would be to load it as an XML document, and then save it with a How do you want the output? In a string, a file, a byte array? | |||
|
feedback
|
|
Since encoding only makes sense when text is encoded into a stream, I assume you want to save the document to a file using the given encoding. That way, the encoding attribute will match the file's encoding. Try:
| ||||
|
feedback
|
|
i just want a xml file output. So, according to your suggestions what i have to do is: i've already a string. Assume that my string name is:xmldocstring ` XmlDocument xmldoc = new XmlDocument(); xmldoc.LoadXml(xmldocstring); ` and then how can i save it as a xml file with TextWriter in ISO-8859-9 encoding. | |||
feedback
|
|
thank you for your answer it is really helpfull for me. Besides that i noticed that the sample code below. string xml ="our created xml string";
Response.Output.Write(xml); if i just change the Charset property of Response and ContentEncoding Property of Response, Can i reach the your solution? İ will only change these two lines: Response.Charset = "ISO-8859-9"; does it works? | |||
|
feedback
|