The application technique of implementing the function of transforming HTML code under ASP

Source: Internet
Author: User
<%
'******************************
' Function: HTMLEncode (restring)
' Parameters: restring, strings to be encoded for conversion processing
' Author: Arisisi
' Date: 2007/7/15
' Description: Converting HTML code
' Example: HTMLEncode ("<p> Welcome access <br> Arisisi </p>")
'******************************
Function HTMLEncode (restring)
Dim str:str=restring
If not IsNull (STR) Then
str = UNCHECKSTR (str)
str = Replace (str, "&", "&")
str = Replace (str, ">", ">")
str = Replace (str, "<", "<")
str = Replace (str, CHR (32), "")
str = Replace (str, CHR (9), "")
str = Replace (str, CHR (9), "")
str = Replace (str, CHR (34), "" ")
str = Replace (str, CHR (39), "'")
str = Replace (str, CHR (13), "")
str = Replace (str, CHR (Ten), "<br>")
HTMLEncode = Str
End If
End Function

' Reverse-Convert HTML code

Function HtmlDecode (restring)
Dim str:str=restring
If not IsNull (STR) Then
str = Replace (str, "&", "&")
str = Replace (str, ">", ">")
str = Replace (str, "<", "<")
str = Replace (str, "", CHR (32))
str = Replace (str, "", CHR (9))
str = Replace (str, "", CHR (9))
str = Replace (str, "" ", CHR (34))
str = Replace (str, "'", CHR (39))
str = Replace (str, "", CHR (13))
str = Replace (str, "<br>", CHR (10))
HtmlDecode = Str
End If
End Function
%>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.