aspweb伺服器不支援 response.charset
所以採用編碼
>1、只要在ajax中有資料提交時,如果頁面編碼不是utf-8的,都應該對提交的資料進行編碼,js的編碼函數為escape()
2、在伺服器端頁接收資料後進行解碼,然後對資料進行相關的處理後再編碼
3、返回到用戶端後再解碼
4、如果沒有提交資料,而是直接從伺服器端擷取資料,那直接在伺服器版面設定Response.Charset="gb2312"即可,不用再編碼解碼
vbscript中分別對應js中的escape()和unescape()函數
程式碼<%
'與javascript中的escape()等效
Function VbsEscape(str)
dim i,s,c,a
s=""
For i=1 to Len(str)
c=Mid(str,i,1)
a=ASCW(c)
If (a>=48 and a<=57) or (a>=65 and a<=90) or (a>=97 and a<=122) Then
s = s & c
ElseIf InStr("@*_+-./",c)>0 Then
s = s & c
ElseIf a>0 and a<16 Then
s = s & "%0" & Hex(a)
ElseIf a>=16 and a<256 Then
s = s & "%" & Hex(a)
Else
s = s & "%u" & Hex(a)
End If
Next
VbsEscape=s
End Function
'與javascript中的unescape()等效
Function VbsUnEscape(str)
Dim x
x=InStr(str,"%")
Do While x>0
VbsUnEscape=VbsUnEscape&Mid(str,1,x-1)
If LCase(Mid(str,x+1,1))="u" Then
VbsUnEscape=VbsUnEscape&ChrW(CLng("&H"&Mid(str,x+2,4)))
str=Mid(str,x+6)
Else
VbsUnEscape=VbsUnEscape&Chr(CLng("&H"&Mid(str,x+1,2)))
str=Mid(str,x+3)
End If
x=InStr(str,"%")
Loop
VbsUnEscape=VbsUnEscape&str
End Function
%>來個示範:
用戶端頁:client.html
程式碼<script>
//jquery的post
$.post
(
'server.asp',
{
Act:'DoSubmit',
UserName:escape('西樓冷月'),//進行編碼
WebSite:'www.chinacms.org'
},
function(data)
{
alert(unescape(data));//對返回資料進行解碼
}
);
</script>伺服器端頁:server.asp 程式碼<%
Response.Charset="gb2312"
Dim UserName,WebSite
If Request.Form("Act")="DoSubmit" Then
UserName=Request.Form("UserName")
WebSite =Request.Form("WebSite")
'在伺服器端解碼
UserName=VbsUnEscape(UserName)//解碼
'處理資料
'---省略資料處理部分
'資料處理後輸出,先用VbsEscape()編碼
'by www.chinacms.org
Response.Write VbsEscape(UserName)
End If
%>