Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Line Feed Character???

Status
Not open for further replies.

mattscotney

Programmer
Jul 31, 2002
57
AU
I require the following code to appear on two lines when displayed in a browser. What function / characters do I use?

Document.Write("hello" & ??? & "matt")

Example in browser:

hello
matt
 
Document.Write("hello" & CHR(10) & "matt") Line feed


Document.Write("hello" & CHR(13) & "matt") Carriage return line feed.



Regards
Steve Friday
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top