WEB开发网
开发学院WEB开发ASP ASP乱码的解决方法 阅读

ASP乱码的解决方法

 2001-04-29 10:19:43 来源:WEB开发网   
核心提示:: 在做内有VBscript的asp homepage时,一个form提交方法为GET, : 当form的表单传给asp处理时,入...asp?name="张三" : 可张三的中文已经乱码,请问如何在asp中用vbscript将乱码恢复成 : 正确的中文. : ....... 对文字进行如下cut(
: 在做内有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>



Tags:ASP 乱码 解决

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接