I set a value for a Multiline Textbox like this.
Multiline Textbox
textBox1.Text = \"Line1\\r\\n\\r\\nLine2\";
But, only one line space in outpu
You need to set the textbox to be multiline, this can be done two ways:
In the control:
Code Behind:
MyBox.TextMode = TextBoxMode.MultiLine; MyBox.Rows = 10;
This will render as a