You are here: irt.org | FAQ | ASP | Q5820 [ previous next ]
The VBScript expression vbCrLf can be appended to text strings to add a carriage return (Cr) and line feed (Lf) or ASCII character 13 and 10, respectively.
<% ' <br> below breaks the line in ' the displayed HTML, vbCRLf in the source code response.write "This text is on line 1<br>" & vbCrLf response.write "This text is on line 2" %>