escape sequence \n

  • Thread starter Thread starter marcia
  • Start date Start date
M

marcia

How can I display parts of a string one line after the
other using a Label in a WebForm ... or otherwise?
 
What I'd really like to do is take

Label1.Text = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";

and display portions of the strings on seperate lines ...

something like

Label1.Text = "xxxxxxxx" + ??? + "xxxxxxxx" +
 
Back
Top