Perchè tu lo scrivi sulla pagina come testo normale.
codice:
' supponiamo che la variabile testo contenga il testo preso dal campo memo...
testo = trim(rs("campoMemo"))
if inStr(testo," ") > 0 then
  elTesto = split(test)
  for each item in elTesto
    if left(item,4) = "www." then
    response.write "" & item & " "
    elseIf left(item,7) = "http://" then
    response.write "" & item & " "
    else
    response.write item & " "
    end if
  next
else
    if left(testo,4) = "www." then
    response.write "" & testo & " "
    elseIf left(testo,7) = "http://" then
    response.write "" & testo & " "
    else
    response.write testo & " "
    end if
end if