网络编程 
首页 > 网络编程 > 浏览文章

asp加密解密函数decrypt

(编辑:jimmy 日期: 2024/10/9 浏览:3 次 )
加密与解密函数
<%function decrypt(dcode) 
dim texts
dim i
for i=1 to len(dcode)
texts=texts & chr(asc(mid(dcode,i,2))-i)
next
decrypt=texts
end function
function encrypt(ecode)
Dim texts
dim i
for i=1 to len(ecode)
texts=texts & chr(asc(mid(ecode,i,2))+i)
next
encrypt = texts
end function
%>


<%=decrypt(123123)%>
<a href="11111.asp?id=<%=decrypt("sdfasdfs")%>">111111111</a>
<%abc=encrypt(request("id"))%><%=abc%>
上一篇:asp获取当前网页地址的代码
下一篇:asp创建表,复制表 字段类型附录