Change the .asp file, execution, use this very cool when you use AsphttP, of course, you have to improve it.
<% OPTION Explicit
Function striphtml (strHtml) 'Strips the html tags from strHtml
Dim objRegexp, stroutputset Objregexp = new regexp
ObjregEXP.IGNORECASE = trueObjregExp.global = trueobjregEXP.PATTERN = "<. ?>"
'Replace all html tag matches with the empty stringstroutput = Objregexp.replace (strHtml, "")
'Replace All with stroutput = Replace (stroutput, "<", "<") stroutput = replace (stroutput, ">", ">")
StriPHTML = stroutput 'return the value of stroutput
Set objRegexp = Nothingend Function
%>