mailMessage.Bod y = "text1 : " + txtBody.Text;
mailMessage.Bod y += "text2 : " + TextBox1.Text;
out put:
>text1 xyz text2 xyz
I want to seperete these two lines in mail which i got
as
>text1 : xyz
>text2 : xyz
please reply me how to do it......
mailMessage.Bod y += "text2 : " + TextBox1.Text;
out put:
>text1 xyz text2 xyz
I want to seperete these two lines in mail which i got
as
>text1 : xyz
>text2 : xyz
please reply me how to do it......
Comment