In .NET I can provide both \\r or \\n string literals, but there is a way to insert something like \"new line\" special character like Enviro
\\r
\\n
Enviro
If you are working with Web application you can try this.
StringBuilder sb = new StringBuilder(); sb.AppendLine("Some text with line one"); sb.AppendLine("Some mpre text with line two"); MyLabel.Text = sb.ToString().Replace(Environment.NewLine, "")