access数据库登录
Ⅰ 关于用access做数据库登录网页的问题
给你个思路,实现方法很多,基本一样。
第一种办法:
前提:你的网站支持ACCESS和asp连接,
步骤:
1) Access里边建表,三个字段:用户名 密码 网页地址
2) 前台建立一个asp页面,功能为判断登录的用户名和密码是否正确,然后转向对应的网页地址
第二种办法:
当然如果你没有程序经验,不用access,直接在asp判断用户名和密码也可以,可能修改会更方便,
程序如下,命名为test.asp:
<%
dim username,password
username=trim(request("username"))
password=trim(request("password"))
if username="用户名1" and password="密码1" then
response.redirect "网址1"
response.end
elseif username="用户名2" and password="密码2" then
response.redirect "网址2"
response.end
elseif username="用户名3" and password="密码3" then
response.redirect "网址3"
response.end
'此处可重复elseif到end代码,直到足够数量
end if
%>
<form action="test.asp" method="post">
用户名:<input type="text" id="username" name="username" value="">
<br>
密码:<input type="password" id="password" name="password" value="">
<br>
<input type="submit" value="提交">
</form>
将以上代码需要修改的地方换成你的东西 改为test.asp 上传到服务器 试一下
一般没问题的。
Ⅱ 我用access做了个数据库系统,现在想做一个登录页面,请问如何设置访问需用户名和密码才能登录。
这个先在数据库里建一张表,一列是用户名,一列是密码。然后做一个登录的页面,然后链接数据库。这样同过在页面中写代码,判断输入的用户名在数据库中有没有,如果有,再判断对应的密码正确否。如果正确,就跳转到另外一个页面(就是你成功登陆后的页面),不正确提示错误。