How to display non-breaking space with VB inline XML interface
I am using VB9 embedded XML and I need to specify a non-breaking space. If you normally use "
" in html, using it in inline XML results in the error "XML entity references are not supported". How do you indicate unbreakable space?
+1
gfrizzle
source
to share
1 answer
Most named objects are not supported in XML unless you explicitly declare them in the DTD. However, you can use unicode object and # 160; (no space, of course).
This is a good site for finding Unicode characters.
+2
James sulak
source
to share