Mortgage Calculator | Mortgage Calculator | Per Insurance | Personal Finance | Cash ISA
VB Characters [Archive] - PCMech Forums

PDA

View Full Version : VB Characters


artsapimp
09-20-2000, 11:23 AM
When using CDONTS to send mail in ASP I know the body has to be fomatted as text but can use characters like Chr(13) to return to the next line. Where can I find a list of all characters?

mosquito
09-20-2000, 03:38 PM
euh, that's just plain ascii,

do a

dim i
for i = 0 to 255
response.write("ascii: " & i & " means: """ & chr(i) & """ ")
next

and you have the complete list.

artsapimp
09-20-2000, 06:48 PM
Thank you very much.

I changed it to...

dim i
for i = 0 to 255
response.write("Chr(" & i & ") means: """ & chr(i) & """<br>")
next

But that worked perfect. Thanks again.

mosquito
09-20-2000, 07:02 PM
you're welcome. :D