I am getting my data displaying in Chineese type language in IE10 when doing the following:
ICVID = Request.QueryString("ICVID")
strXML = GetXML(ICVID) 'Gets data in xml format
Dim oDOM, xSS
Set oDOM = Server.CreateObject("MSXML2.DOMDocument")
oDOM.async = False
Set xSS = Server.CreateObject("MSXML2.DOMDocument")
xSS.async = False
oDOM.loadXML strXML
...
xSS.load Server.MapPath("GMTInboundCharges.xsl")
If xSS.parseError.errorCode <> 0 Then
Response.Write xSS.parseError
End If
Response.Write oDOM.transformNode(xSS)
Works fine in previous versions of IE10. I have seen other posts regarding the changes in IE10 with the xml response, but I am not using AJAX. Wondering what changes I need to make to get my data to display correctly. thanks.