- 3
- 0
- 约4.67千字
- 约 33页
- 2021-12-06 发布于江西
- 举报
第8章 Asp程序基本模块 8.1 注册模块 8.2 登录模块 8.3 读书室 8.4 留言板 8.5 在线测试 8.6 新闻发布系统 8.7 网上投票系统 8.1 注册模块 注册是所有网站都能通用的模块,几乎大部分网站都需要注册才能成为其会员. 实现注册需要以下几个文件: 1、数据库文件reg.mdb 2、客户端页面,可以设为html类型也可以设为asp类型。 3、注册处理的Asp程序,用于处理表单提交的数据。 例8-1:注册程序的实现 1、数据库的内容为: 2、客户端页面显示样式为: 其核心代码为: form action=register.asp method=post input name=name style=Height:22px;width:167px input type=password name=password1 style=Height:22px;width:167px“ input type=password name=password2 style=Height:22px;width:167px input name=email style=Height:22px;width:167px … 3、处理注册信息的文件Regirest.ASP 每次提交注册信息通过此文件实现向数据表中添加一行记录的效果,其核心代码: 读取用户
原创力文档

文档评论(0)