G
Guest
Hi
I am using StringBuilder to compose an email. The body of email consists of
a table for which data has to be taken fron SQL Server.
I use append method to add text to the StringBuilder variable. When I am
finished I call ToString function to get the string.
The problem is that many times, it changes the text I appended to it. Like
when I appended
it changed to
<TH vAlign=top noWrap width=30><FONT face=Arial size=2 r="#ffffff"
colo>ABC<BR>6<BR>5<BR>05</FONT></TH>
I tried using the String instead of StringBuilder but the problem is still
there.
Please help me.
I am using StringBuilder to compose an email. The body of email consists of
a table for which data has to be taken fron SQL Server.
I use append method to add text to the StringBuilder variable. When I am
finished I call ToString function to get the string.
The problem is that many times, it changes the text I appended to it. Like
when I appended
ABC<BR>6<BR>5<BR>05</FONT></TH>
it changed to
<TH vAlign=top noWrap width=30><FONT face=Arial size=2 r="#ffffff"
colo>ABC<BR>6<BR>5<BR>05</FONT></TH>
I tried using the String instead of StringBuilder but the problem is still
there.
Please help me.