Jan 14, 2002 #1 Ablecken Programmer Jun 5, 2001 130 US how do i make a new line. i know in vb you put vbcr. how do you do it in vbscript for an asp page.
Jan 14, 2002 1 #2 JohnYingling Programmer Mar 24, 2001 3,742 US vbCr = Chr(13) vbLf = Chr(10) vbCrLf = Chr(13)& Chr(10) http://www.VBCompare.com Compare Code (Text) http://www.VBSortGen.com Generate Sort in VB or VBScript Upvote 0 Downvote
vbCr = Chr(13) vbLf = Chr(10) vbCrLf = Chr(13)& Chr(10) http://www.VBCompare.com Compare Code (Text) http://www.VBSortGen.com Generate Sort in VB or VBScript
Jan 14, 2002 1 #3 link9 Programmer Nov 28, 2000 3,387 US or if you're trying to render a line break on the resulting page for the user, just response.write("<br>" What JohnYingling posted will put one in the source code (which is also quite useful) paul Upvote 0 Downvote
or if you're trying to render a line break on the resulting page for the user, just response.write("<br>" What JohnYingling posted will put one in the source code (which is also quite useful) paul