程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> ASP技巧 >> ASP亂碼的解決方法

ASP亂碼的解決方法

編輯:ASP技巧

: 在做內有VBscript的ASP homepage時,一個form提交方法為GET,
: 當form的表單傳給asp處理時,入...ASP?name="張三"
: 可張三的中文已經亂碼,請問如何在ASP中用vbscript將亂碼恢復成
: 正確的中文.
: .......


對文字進行如下cut()過程即可
<script language=vbscript runat=server>
Function cut(str)
length = Len(str)
count = 1
Do While count <= length
If strComp(Mid(str,count,1),"Z",1) > 0 Then
length = length -1
End If
count = count + 1
Loop
cut = Left(str,Length)
if session("Version")<>3 then '若為高版本ASP則不需處理
cut = str
end if
End Function
</script>

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