Having problems with special characters in windows-1250 characterset I found that Connector.asp render is not creating XML header. Problem resolved with the addition of one line to sub output_as_xml(res).
[code] private sub output_as_xml(res)
output=render_set(res)
start=xml_start()
end_=xml_end()
Response.Clear
Response.ContentType = "text/xml"
Response.write("<?xml version=""1.0"" encoding=""" & encoding & """?>") 'added
Response.Write start
m_event.trigger "beforeOutput",""
Response.Write output
Response.Write end_
end sub[/code]
Remains the problem od database updates with special characters.
I have following inclusions.
[code]
[/code]But problems remain. For example Đ is saved the the databas (MS SQL Server with proper collation) as Ä.
Please advice.