国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

ASP編碼和解碼函數詳解

瀏覽:240日期:2022-06-05 15:22:38

用ASP開發的時候遇到一個解碼問題。雖然在ASP中使用Request獲取編碼過URL字符串會自動解碼,但是Request.BinaryRead(Request.TotalBytes)取得Post數據時卻不會解碼,所以只能手動進行解碼。
ASP解碼函數:

Function URLDecode(enStr) 
 dim deStr,strSpecial 
 dim c,i,v 
  deStr=""
  strSpecial="!""#$%&"()*+,.-_/:;<=>?@[/]^`{|}~%"
  for i=1 to len(enStr) 
   c=Mid(enStr,i,1) 
   if c="%" then 
    v=eval("&h"+Mid(enStr,i+1,2)) 
    if inStr(strSpecial,chr(v))>0 then 
     deStr=deStr&chr(v) 
     i=i+2 
    else
     v=eval("&h"+ Mid(enStr,i+1,2) + Mid(enStr,i+4,2)) 
     deStr=deStr & chr(v) 
     i=i+5 
    end if
   else
    if c="+" then 
     deStr=deStr&" "
    else
     deStr=deStr&c 
    end if
   end if
  next 
  URLDecode=deStr 
End function

只是個人愛好,自己研究了一下編碼的實現思路,最后自己寫了一個編碼函數,提供大家參考。注:ASP有內置的編碼函數,即是Server.URLEncode。

ASP編碼函數:

private Function URLEncoding(vstrIn) 
  strReturn = ""
  For i = 1 To Len(vstrIn) 
  ThisChr = Mid(vStrIn,i,1) 
  If Abs(Asc(ThisChr)) < &HFF Then 
  strReturn = strReturn & ThisChr 
  Else 
  innerCode = Asc(ThisChr) 
  If innerCode < 0 Then 
  innerCode = innerCode + &H10000 
  End If 
  Hight8 = (innerCode And &HFF00)/ &HFF 
  Low8 = innerCode And &HFF 
  strReturn = strReturn & "%" & Hex(Hight8) & "%" & Hex(Low8) 
  End If 
  Next 
  URLEncoding = strReturn 
End Function

建議大家在中文編碼的時候,還是使用ASP 內置的函數。雖然上面這個編碼函數測試過N 遍了,沒有發現問題,但是以防萬一存在Bug。

以上就是關于ASP編碼和解碼函數,希望對大家的學習有所幫助。

標簽: ASP
主站蜘蛛池模板: 德州市| 阿瓦提县| 突泉县| 平定县| 巴林左旗| 根河市| 丰城市| 肇州县| 道孚县| 阿合奇县| 麦盖提县| 甘谷县| 永宁县| 甘泉县| 逊克县| 通江县| 博乐市| 安多县| 石城县| 昌吉市| 淳化县| 德庆县| 佛冈县| 长汀县| 溧水县| 永川市| 靖宇县| 邻水| 南投县| 北流市| 和田市| 沐川县| 当雄县| 贵州省| 黎川县| 双桥区| 内丘县| 东平县| 土默特右旗| 镇原县| 雷山县|