使用md5給字符串加密
md5.asp代碼見 www.aspprogram.cn/soft.ASP?id=39
index.htm
<form name="form1" method="post" action="2.ASP">
要加密的字符串:<input type="text" name="ch"><br>
<input type="submit" value="加密"><br>
</form>
2.ASP
<!--#include file="md5.ASP"-->
<%
c=request("ch")
response.write c&"加密得到的字符串為:"&md5(c)
%>
完畢,運行你的程序,看看結果