ajax返回乱码的解决方案
摘要:一,通过VBS转换函数 VBS转换函数: Function convertstr(vIn) strReturn = "" For i = 1 To LenB(vIn) ThisCharCode = AscB(MidB(vIn,i,1)) If ThisCharCode < &H80 Then strReturn = strReturn & Chr(ThisCharCode) Else ...
阅读全文
posted @
2008-03-25 09:04
世貌
阅读(761)
推荐(0)