Chr
The Chr function will convert an ASCII code (number) to a
single character that corresponds to its representation on the ASCII
chart. The ASCII chart is a standard character encoding that
computers use to represent characters.
Valid ASCII codes range from 0 to 127. There are various implementations
of the extended ASCII codes from 128 to 255. For more information, you
should view the ASCII standard page.
Dim cReturn Dim cLineFeed
cReturn = Chr(13) ' same as vbCr
cLinefeed = Chr(10) ' same as vbLf
' instead of cReturn & cLinefeed, you can use vbCrLf
Response.Write "Carriage Return Follows..." & cReturn & cLinefeed
|
 |

|