Thanks for taking the time to respond... I understand that if you type an & in the body that it should be converted, but this is as part of a link... how do I accomplish creating an href that contains parameters?
Is there some way to escape it so it doesn't get converted?
For instance...
<a href="/somepage.aspx> Cute & Soft </a> should end up as
<a href="/somepage.aspx> Cute & Soft </a> correctly,
but
<a href="/somepage.aspx?param1=21¶m2=22> Cutesoft </a> should end up as
<a href="/somepage.aspx?param1=21¶m2=22> Cutesoft </a>
right?