Replace a Character in a String:
In this example a " " (space) is replaced with the ASCII code equivalent: chr(32).
Click here for an example.
Code:
Place in the <BODY>:
Highlight
<% Function ReplaceCharacter(strData) ReplaceCharacter = Replace(strData, Chr(32), "+") End Function %>
">The Name of the Link