In IE 8 when I download a document which I've coded in C#/xslt/xml the title of the document should be '£sqft' but it's '£sqft'.
I kind of guess the reason - its because the string is encoded in .NET in utf-16 and IE 8 uses ansi to read it. I'm guessing this because using notepad++ if I enter £ in utf-8 then switch to ANSI it preceeds the character with this other character.
How do I get IE 8 to read it as utf-8?
Here is the code for creating the document where I'm passing an xsl file the name of which is '£sqft' which exports as '£sqft':
TextWriter output;
DataSet ds = 'some dataset'
XmlDocument xDoc = new XmlDocument();
xDoc.LoadXml(ds.GetXml());
xt.Load("c:/£sqft.xsl");
xt.Tran
sform(xDoc, null, output);