欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp加密解密函數(shù)decrypt

 更新時間:2008年01月09日 13:40:16   作者:  
asp加密解密函數(shù)decrypt
加密與解密函數(shù)
<%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%>

相關(guān)文章

最新評論