一切为了兴趣
学习点滴

文章分类 -  Ajax

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) 推荐(0)