I am using xmllite to write xml in the form of a DataSet
The data contains a backspace character
If I write it with DataSet->WriteXml(), it writes this
<VALUE>DEFAULT@/Default//Default=2/</VALUE>
When I write it using xmlLite, I am escaping it this way
case '\b': StrCatW(m_unicodeBuff, L""); break;
the xml written by xmllite is this
<VALUE>DEFAULT@/Default/&/Default=2/</VALUE>
how can I get xmllite to encode the backspace character?
↧
xmllite is unable to write an escaped backspace character
↧