how do i get a newline in a web application? printing a vbcrlf appears to do nothing an a <br> is not present in the html.
Printable View
how do i get a newline in a web application? printing a vbcrlf appears to do nothing an a <br> is not present in the html.
Try ControlChars.NewLine in the Microsoft.VisualBasic namespace.
um..........................
how do i do that?
If you want a line feed on the web page, try Response.Write("<br/>")