我的数据库叫做db1.mdb 表是"biao".
然后现在我有3个ASP面.分别为index.asp admin.asp login.asp
在login.asp里面输入账号密码之后.验证正确就转到admin.asp
不正确就转到index.asp
帐号对应的就是"biao"里面的"name"
密码对应的就是"biao"里面的"pass"
怎么做啊?就是login.asp这里的代码怎么写?
PS:虽然我的技术不算高但懂一点,请教了.
再问另一个ASP+ACCESS查询的问题.这个也答了就追加分:
<%
name=request.form("name")
tel=request.form("tel")
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("db1.mdb")
exec="select * from biao where name='"+name+"' and tel="+tel
set rs=server.createobject("adodb.recordset")
rs.open exec,conn,1,1
%>
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<%
do while not rs.eof
%><tr>
<td><%=rs("name")%></td>
<td><%=rs("tel")%></td>
<td><%=rs("message")%></td>
<td><%=rs("time")%></td>
</tr>
<%
rs.movenext
loop
%>
</table>
</body>
</html>
听说在哪里加上instr( 的就可以了?哪里加?
谢谢了
參考答案:50分问ASP与ACCESS的问题!其实很简单的!我的数据库叫做db1.mdb 表是"biao".
然后现在我有3个ASP面.分别为index.asp admin.asp login.asp
在login.asp里面输入账号密码之后.验证正确就转到admin.asp
不正确就转到index.asp
帐号对应的就是"biao"里面的"name"
密码对应的就是"biao"里面的"pass"
怎么做啊?就是login.asp这里的代码怎么写?
答案:
连接数据库的conn.asp不用我写了吧
我直接引用你能明白就ok了呵呵
验证页面的代码:
<!-- #include file="conn.asp" -->
<%
set rs=server.createobject("adodb.recordset")
str="select * from biao where name='" & trim(request.form("前一个递交页面的用户名文本框的名字")) &"' and pass='" & trim(request.form("前一个递交页面的密码文本框的名字")) & "'"
rs.open str,conn,1,2,1
if not rs.bof and not rs.eof then
session("name")=rs("name")
response.redirect "admin.asp"
else
response.redirect "index.asp"
end if
%>
login.asp不需要代码,只需要把表单的action指向处理验证页面就ok了
查询的,我不想回答了,好忙拜拜