当前位置: 首页 > 图文教程 > 网络编程 > ASP > asp base64 utf-8为了兼容asp.net的base64

ASP
批量文件自动搜索替换插入器 Ver2.1
用asp实现批量删除bak文件
在线扫描探测检查asp站点木马后门的程序
[原创]随机增加网站点击的一个不错的方法
flash和asp分页的一点心得与flash脚本
ASP中常用的函数和详细说明
用javascript编写asp应用--第一课--通览
javascript asp教程第四课 同时使用vbscript和javascript
javascript asp教程第五课--合二为一
javascript asp教程第七课--response属性
javascript asp教程第八课--request对象
javascript asp教程第九课--cookies
javascript asp教程第十课--global asa
javascript asp教程第十一课--Application 对象
javascript asp教程第十二课---session对象
javascript asp教程第十三课--include文件
javascript asp教程服务器对象
javascript asp教程错误处理
javascript asp教程创建数据库连接
javascript asp教程Recordset记录

ASP 中的 asp base64 utf-8为了兼容asp.net的base64


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-13   浏览: 509 ::
收藏到网摘: n/a

asp base64 utf-8为了兼容asp.net的base64
复制代码 代码如下:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%Session.CodePage=65001%>
<!--#include file="base64.asp"-->
<%
Function AspUrlDecode(strValue)
Dim varAry, varElement, objStream, lngLoop, Flag
strValue = Replace(strValue, "+", " ")
varAry = Split(strValue, "%")
Flag = varAry(0) = ""
Set objStream = Server.CreateObject("ADODB.Stream")
With objStream
.Type = 2
.Mode = 3
.Open
For Each varElement In varAry
If varElement <> Empty Then
If Len(varElement) >= 2 And Flag Then
.WriteText ChrB(CInt("&H" & Left(varElement, 2)))
For lngLoop = 3 To Len(varElement)
.WriteText ChrB(Asc(Mid(varElement, lngLoop, 1)))
Next
Else
For lngLoop = 1 To Len(varElement)
.WriteText ChrB(Asc(Mid(varElement, lngLoop, 1)))
Next
Flag = True
End If
End If
Next
.WriteText Chr(0)
.Position = 0
AspUrlDecode = Replace(ConvUnicode(.ReadText), Chr(0), "", 1, -1, 0)
On Error Resume Next
.Close
Set objStream = Nothing
End With
End Function

Function ConvUnicode(ByVal strData)
Dim rs, stm, bytAry, intLen
If Len(strData & "") > 0 Then
strData = MidB(strData, 1)
intLen = LenB(strData)
Set rs = Server.CreateObject("ADODB.Recordset")
Set stm = Server.CreateObject("ADODB.Stream")
With rs
.Fields.Append "X", 205, intLen
.Open
.AddNew
rs(0).AppendChunk strData & ChrB(0)
.Update
bytAry = rs(0).GetChunk(intLen)
End With
With stm
.Type = 1
.Open
.Write bytAry
.Position = 0
.Type = 2
.Charset = "utf-8"
ConvUnicode = .ReadText
End With
End If
On Error Resume Next
stm.Close
Set stm = Nothing
rs.Close
Set rs = Nothing
End Function

%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<%

'base64编码后,比起.net多了77u/
Response.Write("base64编码后:"&base64Encode("阿会楠")&"<br />")
'base64解码后
Response.Write("base64解码后:"&base64uncode("6Zi/5Lya5qWg")&"<br />")
%>
</body>
</html>