D
Dave Tichenor
How do you create a new line in the mail message; i'm using asp.net.
I try using - vbcrlf
- chr(13) and chr(10)
- Environment.NewLine
But when i receive the email message it is concatenated all together.
thanks
Please see my code below
msg.Body = TextBox5.Text & chr(13) & chr(10) & _
Label2.Text & " = " & TxtName.Text & chr(13) &
chr(10) & _
Label1.Text & " = " & TxtAdd.Text + " " +
TxtCity.Text
I try using - vbcrlf
- chr(13) and chr(10)
- Environment.NewLine
But when i receive the email message it is concatenated all together.
thanks
Please see my code below
msg.Body = TextBox5.Text & chr(13) & chr(10) & _
Label2.Text & " = " & TxtName.Text & chr(13) &
chr(10) & _
Label1.Text & " = " & TxtAdd.Text + " " +
TxtCity.Text