I am using VB9’s inline XML, and I have a need to specify a non-breaking space. Where you would normally use ‘ ‘ in html, using it in inline XML produces the ‘XML entity references are not supported’ error. How do you specify a non-breaking space?
I am using VB9’s inline XML, and I have a need to specify a
Share
Most named entities are not supported in XML unless you explicitly declare them in a DTD. You can, however, use the unicode entity & #160; (without the space, of course).
This is a good site for looking up unicode characters.