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

asp html代碼轉安全ascii代碼

編輯:關於ASP編程

    function DoTrimProperly(str, nNamedFormat, properly, pointed, points)
      dim strRet
      strRet = Server.HTMLEncode(str)
      strRet = replace(strRet, vbcrlf,"<br>")
      strRet = replace(strRet, vbtab,"")
      if (LEN(strRet) > nNamedFormat) Then
        strRet = LEFT(strRet, nNamedFormat)  
        if (properly = 1) Then    
          Dim TempArray       
          TempArray = split(strRet, " ")
          Dim n
          strRet = ""
          for n = 0 to Ubound(TempArray) - 1
            strRet = strRet & " " & TempArray(n)
          next
        End if
        if (pointed = 1) Then
          strRet = strRet & points
        End if
      End if
      DoTrimProperly = strRet
    End Function

    Function FormatStr(String)
      on Error resume next
      String = Replace(String, CHR(13), "")
      String = Replace(String, "<", "&lt;")
      String = Replace(String, ">", "&gt;")
      String = Replace(String, CHR(10) & CHR(10), "<BR><BR>")
      String = Replace(String, CHR(10), "<BR>")
      FormatStr = String
    'End Function


    Function FormatStr(String)
      on Error resume next
      String = Replace(String, " ", "&nbsp;")
      String = Replace(String, CHR(13), "&nbsp")
      String = Replace(String, CHR(10) & CHR(10), "<BR><BR>")
      String = Replace(String, CHR(10), "<BR>")
      String = Replace(String, "<", "&lt;")
      String = Replace(String, ">", "&gt;")
      FormatStr = String
    End Function

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