三个文件 一个html登陆界面 一个asp登陆后的界面 和一个mdb记录用户名密码的数据库文件
Tijiao3.html
<formmethod="post"action="fanhui3.asp"><p>请提供以下信息,然后单击提交。
<p>姓名:<inputname="myname" size="36">
<p>密码:<inputname="psw" type=password size="36">
<p><input type=submitvalue="提交"><input type=resetvalue="清除">
</form>
Fanhui3.asp
<html>
<body>
<%
n1=trim(request.form("myname"))
n2=trim(request.form("psw"))
if n1="" or n2="" then
response.write"<palign=center>出错提示:用户名、密码不能为空!</p>"
response.write"<paling=center><ahref=tijiao3.html>点击这里重新登录!</a></p>"
response.end
end if
set cn=server.createobject("adodb.recordset")
cn.open "select name,word from s1 where name='"& n1&"' and word='"& n2&"' ","driver={microsoft ac cess driver(*.mdb)};dbq=" & Server.MapPath("s1.mdb")
if cn.eof then
response.write"<palign=center>出错提示:用户名不存在或者用户名、密码不正确!</p>"
response.write"<paling=center><ahref=tijiao3.html>点击这里重新登录!</a></p>"
else
response.write"<h1>欢迎您成功登录本公司网站</h1>"
response.write"<paling=center><ahref=tijiao3.html>更改用户</a></p>"
cn.close
set cn=nothing
end if
%>
</body>
</html>
s1.mdb数据库文件,记录用户名和密码,表名为s1,字段名称分别为name和word