[thelist] Line breaks with ASP

Madhu Menon webguru at vsnl.net
Sun Oct 27 09:34:01 CST 2002


At 08:54 PM 27-10-02, Kevin Stevens wrote:
>varDataLine = Replace(varDataLine,"vbcrlf","<br />")
>
>but this does not seem to affect the text rendered by the browser. Where am
>I going wrong?

VBCrLf is a VBScript constant, not a string. Don't put quotes around it.

So make it:

varDataLine = Replace(varDataLine, vbcrlf, "<br />")

Does that work?

Regards,

Madhu

<<<   *   >>>
Madhu Menon
Internet User Experience Consultant

Content * Interfaces * Usability * Net Strategy




More information about the thelist mailing list