|
when i create a xml file , its creating xml file with encoding="Cp1252" and this file when trying to open in ie6 giving an error
The XML page cannot be displayed
System does not support the specified encoding. Error processing resource 'file:///C:/test.xml'. Line 1, Position 40
<?xml version="1.0" encoding="Cp1252"?>
and when i change the encoding to
encoding="UTF-8" (typing in .xml file),
i can see the perfect output in ie6.
1.what should be done at the time of creating the xml file so that it should not take encoding="Cp1252" ??
2.what should be done to support ie6 to Cp1252 format ??
|