程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp html轉換字符程序

asp html轉換字符程序

編輯:關於ASP編程

    這是一個簡單的安全過濾函數了,把html 轉換字符轉換成可以顯示的文本了

    Function HTMLDecode(reString)
     Dim Str:Str=reString
     If Not IsNull(Str) Then
      Str = Replace(Str, "&", "&")
      Str = Replace(Str, ">", ">")
      Str = Replace(Str, "&lt;", "<")
      Str = Replace(Str, "&nbsp;", CHR(32))
         Str = Replace(Str, "&nbsp;", CHR(9))
      Str = Replace(Str, "&#160;&#160;&#160;&#160;", CHR(9))
      Str = Replace(Str, "&quot;", CHR(34))
      Str = Replace(Str, "&#39;", CHR(39))
      Str = Replace(Str, "", CHR(13))
      Str = Replace(Str, "<br>", CHR(10))
      HTMLDecode = Str
     End If
    End Function

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved