ASP filters HTML <> sensitive characters into HTML encoding instances

Source: Internet
Author: User
Tags chr trim

Function Dvhtmlcode (ByVal fstring)
If IsNull (fstring) or trim (fstring) = "" Then
Dvhtmlcode= ""
Exit function
End If
fstring = replace (fstring, "&gt;", ">")
fstring = replace (fstring, "&lt;", "<")

fstring = Replace (fstring, "&nbsp;", "")
fstring = Replace (fstring, "&quot;", CHR (34))
fstring = Replace (fstring, "& #39;", CHR (39))
fstring = Replace (fstring, "</P><P>", CHR (Ten) & CHR (10))
fstring = Replace (fstring, "<BR>", CHR (10))

Dvhtmlcode = fstring
End Function
%>
<body>
<form name= "Form1" method= "Post" action= "Action=submit" >
<label>
<textarea name= "textarea" cols= "rows=" "7" ></textarea>
</label>
<p>
<label>
<input type= "text" name= "TextField" >
</label>
</p>
<p>
<label>
<input type= "Submit" name= "Submission" value= "submitted" >
</label>
</p>
</form>
</body>
<%
If Request ("action") = "Submit" Then
ubbhtml = Request. Form ("textarea")
Ubbtitle = Request. Form ("TextField")
If ubbhtml <> "" Then
Htmlcode = Dvhtmlcode (ubbhtml)
Else
' Save data
End If
Else
Response. Write ("uncommitted content")
End If

' We use it in the display
Response. Write (Dvhtmlencode (htmlcode)) ' So you can filter the code that destroys data or page effects perfectly
Function Dvhtmlencode (ByVal fstring)
If IsNull (fstring) or trim (fstring) = "" Then
Dvhtmlencode= ""
Exit function
End If
fstring = replace (fstring, ">", "&gt;")
fstring = replace (fstring, "<", "&lt;")

fstring = Replace (fstring, CHR (), "&nbsp;")
fstring = Replace (fstring, CHR (9), "&nbsp;")
fstring = Replace (fstring, CHR (), "&quot;")
fstring = Replace (fstring, CHR (), "& #39;")
fstring = Replace (fstring, CHR (13), "")
fstring = Replace (fstring, CHR (a) & CHR (a), "</P><P>")
fstring = Replace (fstring, CHR (), "<BR>")

    Dvhtmlencode = fstring
End Function
' original reproduced in this site annotated www.111cn.net

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.