G
Guest
Hello!
I have two questions.
-I don't seem to be able to set string length in c#. It seems to be a
variable.
-when I am composing the body of an email in code, there is a "!" in the
string. I am assuming it has to do with the string length, hence I did this:
StringBuilder Body = new StringBuilder(10000);
Body.Append("<html>");
....
and then later:
mm.Body = body.ToString();
The result is exactly the same. I am still getting the exclamation mark
towards the end of the string.
Any clues are very welcome. Thank you!
-Bahman
I have two questions.
-I don't seem to be able to set string length in c#. It seems to be a
variable.
-when I am composing the body of an email in code, there is a "!" in the
string. I am assuming it has to do with the string length, hence I did this:
StringBuilder Body = new StringBuilder(10000);
Body.Append("<html>");
....
and then later:
mm.Body = body.ToString();
The result is exactly the same. I am still getting the exclamation mark
towards the end of the string.
Any clues are very welcome. Thank you!
-Bahman