Well, i saved it as UTF-8, No BOM and It looks like it didn't change anything. What should I save it as if i don't use UTF-8? And i should still keep the UTF-8 encoding line in, correct?
I didn't have that line in the ASP, here's what the ASP code looks like:
Code:
<%
Sub getXML(sourceFile)
Response.Charset="ISO8859-1"
dim styleFile
dim source, style
styleFile = Server.MapPath("news.xsl")
set source = Server.CreateObject("Msxml2.DomDocument")
source.async = false
source.setProperty "ServerHTTPRequest", true
source.load CStr(sourceFile)
set style = Server.CreateObject("Msxml2.DomDocument")
style.async = false
style.load styleFile
source.transformNodeToObject style, Response
set source = nothing
set style = nothing
End Sub
%>
I'm still at a loss - thanks all for helping though....
Bookmarks