Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
Function KillHtml(mytext)
Replace(mytext, "<", "[")
Replace(mytext, ">", "]")
'# Allow these...
Replace(mytext, "[b]", "<b>")
Replace(mytext, "[/b]", "</b>")
End Function
'# Now to use it go like this...
SomeText = "Hello there! < b>Welcome< /b> and ofcourse my example will be < blink>messed</blink> up..."
Response.Write(KillHtml(SomeText))
%>