|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
#1 |
|
Member (10 bit)
|
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?
|
|
|
|
|
|
#2 |
|
SQL nutcase
|
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. |
|
|
|
|
|
#3 |
|
Member (10 bit)
|
Brilliant!!!!
Thank you very much.
I changed it to... dim i for i = 0 to 255 response.write("Chr(" & i & ") means: """ & chr(i) & """ ") next But that worked perfect. Thanks again. |
|
|
|
|
|
#4 |
|
SQL nutcase
|
you're welcome.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|