CATEGORIES
Acer
AMD
Apache
Apple
ASP
Business Object
Compaq
Crystal Reports
CSS
Database
Dell
DOT NET
Fujitsu
Gateway
Google
HP
HTML
IBM
IIS
Intel
Java
Mainframe
Microsoft
Networking
Oracle
SAP
SEO
Sony
SQL Server
Testing
Tomcat
Toshiba
Ubuntu
Visual Basic
Web Hosting
Windows
What is The New Line Characters for ASP and VB
How Can I Get a Line Break in My Text Email
Published by: San (9/18/2007)
I am trying to use \n\r and \n to insert a line break in my emails but i am not having any success. Can you help me with some character to use so that it can give me a line break while sending out plain text email usine cdo.message.
Most Popular Articles
- How to Write Select Case in VB
- What is The New Line Characters for ASP and VB
- How to Code and Decode an URL
- VBscript Regex Example to Strip Special Charater in an ASP Page
- How VBScript StrComp Functions Works with ASP Codes
COMMENT
Name: San
I used vbCrlf couple of times and it worked for me.
Example:
dim name
name = "san"
name = name & vbCrlf & "is an asp coder."
Output:
san
is an asp coder.