<% Function HTMLDecode(sText) Dim regEx Dim matches Dim match sText = Replace(sText, """, Chr(34)) sText = Replace(sText, "<" , Chr(60)) sText = Replace(sText, ">" , Chr(62)) sText = Replace(sText, "&" , Chr(38)) sText = Replace(sText, " ", Chr(32)) return sText End Function dim s s = "<strong>Jon Doe</strong>"; Response.Write HTMLDecode(s) %>