I'm querying SQL 2005 table with FOR XML AUTO, ELEMENTS.
This field has a lot of HTML code.
Example:
...comes out like...
<ul>
<li>Bullet 1</li>
<li>Bullet 2</li>
<li>Bullet 3</li>
</ul>
"&" are converted to &
I realize a browser will read them correctly, but I prefer they remain
intact.
How can I stop that? Do I have to replace statements?
thanks