I'm using replace to display line breaks, but can't figure out how to display links?
Here is the code:
<%=replace(rsBlogEntry.Fields.Item("blogComment"). Value, VbCrLf, "<br>")%>
or
<%=replace(rsBlogEntry.Fields.Item("blogComment"). Value, char(13), "<br>")%>
Also, what is the difference in using "VbCrLf" and "char(13)"? Is one better than the other or one that is preferred?
I still haven't figured out how to incorporate links? If someone enters
www.somedomainname.com it displays as text. How can I get the link to
display as an actual link?
Thanks.
-Dman10-