完成后必定加 到100
绝不失言
我登陆后并没有返回到欢迎界面 依然和保持登陆界面
是不是那点语法写错了
谢谢高手了
<table width="780" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td bgcolor="#0072BC" width="5"><img width="5" height="25"></td>
<td bgcolor="#000000" width="1"><img width="1" height="1"></td>
<td bgcolor="#99CCFF" width="1"><img width="1" height="1"></td>
<td bgcolor="#6699CC" width="9"><img width="9" height="1"></td>
<td bgcolor="#6699CC" align="left">当前位置: <a href="reg.asp">用户注册</a></td>
<td bgcolor="#6699CC" align="right">
<% if request.cookies("user")("username")="" then %>
<form action="login.asp?action=chk" method="post" name="UserLogin" style="margin:0" onSubmit='return checklogin();'>
昵称:<input type="text" size="14" maxlength="20" name="user" value="">
密码:<input type="password" size="14" maxlength="20" name="pass" value="">
<input type="submit" value="登录" name="submit"> <input name='Reset' type='reset' id='Reset' value='重填'> <a href='reg.asp' target='_blank'>新用户注册</a> <a href='login.asp?action=nopass' target='_blank'>忘记密码</a>
</form>
<% end if %>
<% if request.cookies("user")("username")<>"" and request.cookies("user")("password")<>""then %>
<%
dim user,pass
user=request.cookies("user")("username")
pass=request.cookies("user")("password")
set rs=server.createobject("adodb.recordset")
sql="select * from user where user='"&user&"' and pass='"&pass&"'"
rs.open sql,db,1,1
%>
<font color=red><%=rs("realname")%></font>,欢迎你登录! <a href='user.asp'>查看我的资料</a>
<%
set rs=server.createobject("adodb.recordset")
sql="select * from message where to='"&user&"' and isread='否'"
rs.open sql,db,1,1
%>
<%
if rs.recordcount>0 then
response.write "<a href='message.asp'><font color=red>您有新的消息</font></a><bgsound src=images/message.wav>"
else
response.write "<a href='message.asp'>查看历史消息</a>"
end if
%>
<%
rs.close
set rs=nothing
%>
<a href='login.asp?action=out'>退出登录</a>
<%
rs.close
set rs=nothing
%>
<% end if %>
參考答案:首先,你这里面有两个rs对像,这是一个错误
其次,你并没有判断用户名跟密码是否正确,你的查询语句并不能证明说用户名跟密码的正确性
rs.open sql,db,1,1
%>
<font color=red><%=rs("realname")%></font>,欢迎你登录! <a href='user.asp'>查看我的资料</a>
<%
应改为rs.open sql,db,1,1
if not rs.eof then
%>
<font color=red><%=rs("realname")%></font>,欢迎你登录! <a href='user.asp'>查看我的资料</a>
<%
rs.close
set rs=nothing
response.end
end if
再,<% if request.cookies("user")("username")="" then %> (因为你登录成功时也没有设置cookies因此这里判断是无效的,也就使你登录之后还是在那个页)
应为<% if request("user")="" or request("username")="" then %>
<% if request.cookies("user")("username")<>"" and request.cookies("user")("password")<>""then %>这一句也是一样的道理