I have a site that displays articles about webprogramming. To display the code (like html, css ++) correct I use Server.htmlencode like this:
varText = server.htmlencode(varText)
response.write(varText)
This works fine, but I have a problem. I want all valid hyperlinks in varText to be active links (user can click them), not shown as html markup. Doen anybody have a tip how to do this?
Start Free Trial