System.Xml.XmlConvert.EncodeName - Client Side Unescape

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top