plain text
fnHtmlDisplay()
fnHtmlDisplay(...)
Description
This function formats a text string for display on a web page by
converting whitespace characters to the appropriate Html equivalent.
Syntax
fnhtmlDisplay(sString)
Example
<%@ Language=vbScript%>
<% Response.Buffer = true %>
-->-->-->-->-->-->-->-->
Response.Write _
fnHtmlDisplay("hello space" & chr(13) & "more text")
'--<--<--<--<--<--<--<--<--<
%>