设为首页
收藏本站
开启辅助访问
切换到宽版
官方Q群
天天ASP家园网友互动群
群1: 697497501(新手学习互助群)
群2: 47598123(进阶应用群)
注册账号
登录
|
搜索
搜索
本版
用户
论坛
BBS
天天ASP家园
»
论坛
›
技术交流
›
ASP技术
›
asp+access 实现登录和注册(新手学习用)
返回列表
发新帖
查看:
1104
|
回复:
0
[文章教程]
asp+access 实现登录和注册(新手学习用)
[复制链接]
ttasp
当前离线
积分
3960
IP卡
狗仔卡
ttasp
发表于 2019-3-20 20:13:03
|
显示全部楼层
|
阅读模式
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>登录、注册</title>
</head>
<body>
<form action="conn.asp" method="post" name="form" target="_parent">
<table width="345" height="124" border="1">
<tr>
<td colspan="2"><div align="center">会员登录</div></td>
</tr>
<tr>
<td width="111"><div align="right">用户名</div></td>
<td width="218"><input type="text" name="use_zh" /></td>
</tr>
<tr>
<td><div align="right">密码</div></td>
<td><input type="password" name="use_mm" /></td>
</tr>
<tr>
<td colspan="2"><button type="submit">提交</button><button type="reset">清空</button></td>
</tr>
</table>
</form>
<form action="zc.asp" method="post" name="form" target="_parent">
<table width="345" height="124" border="1">
<tr>
<td colspan="2"><div align="center">会员登录</div></td>
</tr>
<tr>
<td width="111"><div align="right">用户名</div></td>
<td width="218"><input type="text" name="use_zh" /></td>
</tr>
<tr>
<td><div align="right">密码</div></td>
<td><input type="password" name="use_mm" /></td>
</tr>
<tr>
<td colspan="2"><button type="submit">提交</button><button type="reset">清空</button></td>
</tr>
</table>
</form>
</body>
</html>
登录验证页面
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>登录处理页面</title>
</head>
<body>
<%
set conn=server.CreateObject("adodb.connection")
sql="provider=microsoft.jet.oledb.4.0;data source="&server.MapPath("zc_dl.mdb")
conn.open(sql) '打开数据库
yh=request.Form("use_zh")
mm=request.Form("use_mm") '接收登录页面的用户名和密码
set rs=server.CreateObject("adodb.recordset")
sqll="select * from a1 where use_zh='"&yh&"' and use_mm='"&mm&"'" '查找数据库中是否有匹配的用户名和密码
rs.open sqll,conn,1,3
if rs.Eof then '如果没有将提示以下的信息并返回登录页面
%>
<script language="javascript">
{
alert("用户名、密码不正确");
window.location.href="index.asp"
}
</script>
<% '匹配成功返回以下以下内容并结束判断语句
else
session("yh")=yh
session("by")=rs("bh")
response.Write("欢迎光临")
response.Write(session("yh"))
end if
%>
</body>
</html>
注册验证页面
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>注册处理页面</title>
</head>
<body>
<%
set conn=server.CreateObject("adodb.connection")
sql="provider=microsoft.jet.oledb.4.0;data source="&server.MapPath("zc_dl.mdb")
conn.open(sql) '连接数据库
yh=request.Form("use_zh")
mm=request.Form("use_mm") '接收注册页面的用户名和密码
set rs=server.CreateObject("adodb.recordset")
sqll="select * from a1"
rs.open sqll,conn,1,3 '打到zc_dl.mdb文件中a1表
rs.addnew
rs("use_zh")=yh
rs("use_mm")=mm
rs.update ' 将接收到的用户名和密码写入a1表
rs.close
set rs=nothing '关闭数据库
%>
<script>
{
alert("注册成功,帮您转回登录页面");
window.location.href="index.asp"
} /*提示注册成功*/
</script>
</body>
</html>
数据库文件名为:zc_dl.mdb
保存的表名为:a1
表字段名包括:bh(自动编号) use_zh(文本) use_mm(文本)
复制代码
ASP币如何冲?请看这里
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
显身卡
返回列表
发新帖
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
注册
本版积分规则
发表回复
回帖后跳转到最后一页
快速回复
返回顶部
返回列表
在线客服
售前咨询
售后咨询
服务热线
023-58418553
微信公众号