Re: XML, IE and french characters
Ok, I admit I am a novice at all this although I do have a lot of
experience with html and asp.
I am using the asp page to grab the data from the database and make it
into an XML file. The code is made of up snippets from another Google
maps user.
This is the main bulk of the asp file:
<%Response.contentType="xml
version=1.0;text/xml;charset=ISO-8859-1;standalone=yes"%>
<markers>
<%While ((NOT RS_XML.BOF) AND (NOT RS_XML.EOF))%>
<marker lat="<%=(RS_XML.Fields.Item("lat").Value)%>"
lng="<%=(RS_XML.Fields.Item("lng").Value)%>"
idCircuit="<%=(RS_XML.Fields.Item("idCircuit").Value)%>"
noBatiment="<%=(RS_XML.Fields.Item("noBatiment").Value)%>"
TitreMaisonFr="<%=(RS_XML.Fields.Item("TitreMaisonFr").Value)%>"
NomMaison="<%=(RS_XML.Fields.Item("NomMaison").Value)%>"
TitreMaisonEn="<%=(RS_XML.Fields.Item("TitreMaisonEn").Value)%>"
NoCivic="<%=(RS_XML.Fields.Item("NoCivic").Value)%>"
Rue="<%=(RS_XML.Fields.Item("Rue").Value)%>"
Ville="<%=(RS_XML.Fields.Item("Ville").Value)%>" />
<%
RS_XML.MoveNext
Wend
%>
</markers>
Now, if you or someone out there can tell me what I have to change so
it makes a file that IE can read I will be eternally grateful.
Patricia
0 Comments:
Yorum Gönder
<< Home