System.Xml.XmlConvert.EncodeName - Client Side Unescape

  • Thread starter Thread starter Jim M
  • Start date Start date
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.
 
Back
Top