ASP⽤户登录界⾯简单代码设计
三个⽂件⼀个html登陆界⾯⼀个asp登陆后的界⾯和⼀个mdb记录⽤户名密码的数据库⽂件
Tijiao3.html
<form method="post"action="fanhui3.asp">
<p>请提供以下信息,然后单击提交。
<p>姓名:<input name="myname" size="36">
<p>密码:<input name="psw" type=password size="36">
<p><input type=submit value="提交"><input type=reset value="清除">
</form>
Fanhui3.asp
<html>
<body>
<%
n1=trim(request.form("myname"))
n2=trim(request.form("psw"))
if n1="" or n2="" then
response.write"<p align=center>出错提⽰:⽤户名、密码不能为空!</p>"
response.write"<p aling=center><a href=tijiao3.html>点击这⾥重新登录!</a></p>"
网页界面设计代码
end if
set ateobject("dset")
cn.open "select name,word from s1 where name='"& n1 &"' and word='"& n2 &"' ","driver={microsoft access driver (*.mdb)};dbq=" & Server.MapPath("s1.mdb")
f then
response.write"<p align=center>出错提⽰:⽤户名不存在或者⽤户名、密码不正确!</p>"
response.write"<p aling=center><a href=tijiao3.html>点击这⾥重新登录!</a></p>"
else
response.write"<h1>欢迎您成功登录本公司⽹站</h1>"
response.write"<p aling=center><a href=tijiao3.html>更改⽤户</a></p>"
cn.close
set cn=nothing
end if
%>
</body>
</html>
s1.mdb数据库⽂件,记录⽤户名和密码,表名为s1,字段名称分别为name和word
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论