J
Jim M
I use EncodeName in my server side ASPX VB code as shown below.
xml_qdata = xml_qdata & "<NoteItem>" &
System.Xml.XmlConvert.EncodeName(myReader.Item("Note")) & "</NoteItem>"
I THEN LOAD xml_qdata into an XML control so that I can read the XML with
javascript on the client.
THE PROBLEM is that unescape does not convert the x200 style characters.
HOW CAN I ESCAPE DATA FOR XML IN SERVER SIDE ASPX VB CODE AND THEN UNESCAPE
ON THE CLIENT USEING JAVASCRIPT?
Thanks in advance.
xml_qdata = xml_qdata & "<NoteItem>" &
System.Xml.XmlConvert.EncodeName(myReader.Item("Note")) & "</NoteItem>"
I THEN LOAD xml_qdata into an XML control so that I can read the XML with
javascript on the client.
THE PROBLEM is that unescape does not convert the x200 style characters.
HOW CAN I ESCAPE DATA FOR XML IN SERVER SIDE ASPX VB CODE AND THEN UNESCAPE
ON THE CLIENT USEING JAVASCRIPT?
Thanks in advance.