1. 首页
  2. 编程语言
  3. 其他
  4. 教育技术信息技术课程整合

教育技术信息技术课程整合

上传者: 2018-12-18 17:39:33上传 RAR文件 577.5KB 热度 39次
信息技术课程整合 河北师范大学login.asp页代码如下 =============================================== loginOK.asp页代码如下 =============================================== ID = request("ID") PASS =request("PASS") if ID="" then response.write("&l t;script>alert('用户名不能为空');history.go(-1);") response.end elseif PASS="" then response.write("alert('密码不能为空);history.go(-1);") response.end end if sql = "select * from user where ID='"&ID&"' and pass='"&PASS&"'" set rs = conn.execute(sql) if not rs.eof then response.write("alert('登陆成功!!');location='/index.asp';") else response.write("alert('登陆失败!!请检查用户名和密码是否正确');history.go(-1);") end if set rs = nothing ************************************************* 这里的 user 是你的数据库里面保存用户信息的数据表,楼主改称自己的表名就可以了 另外,搂住得数据库是什么的?? access 还是 sql 的?? 如果是access的 如果是sql server的
用户评论