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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

vbscript with asp

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
sir,
we, a group of two members are working on a project in asp. The problem we face is
In our form we have assigned a text area and we retrieve the entry from the text area and display it in another page which is redirected to .asp file. the problem is the message typed in the text area is read as single line and is printed in a single line eventhough we break the sentences by hitting enter key. we need our message to be printed in a series of lines when enter is pressed to break the sentences.
pls concide this request and mail the necessary solutions for this
thanking u.

jayaprakash
 
Try:
Code:
replace(strMessage, vbcrlf, &quot;<BR>&quot;)
where
Code:
strMessage
is the message you passed in.

HTH,

Kevin [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top