我弄了一个登录界面,可是每次实现跳转的时候都会出现找不到网页,不知道是什么回事啊。处理登录界面的事件为:
<!--#include file="head.asp"-->
<html>
<style type="text/css">
<!--
body,td,th {
font-family: 宋体;
}
-->
</style>
<body>
<%
set rs=server.CreateObject("adodb.recordset")
uname=trim(request("no"))
id=trim(request("password"))
typ=request.Form("type")
if uname="" or id="" or typ="" then
%>
<script language="VBScript">
Msgbox("请填写必要的信息!")
location.href="登录1.asp"
</script>
<%
else
if typ="manager" then
SQLSTR="select * from librarian where (lno='"&uname&"' and lpassword='"&id&"')"
else
SQLSTR="select * from Student where (sno='"&uname&"' and spassword='"&id&"')"
end if
end if
rs.open SQLSTR,conn,1,3
if rs.eof then
%>
<script language="vbscript">msgbox("该用户不存在!")
location.href="登录1.asp"
</script>
<%
else
if typ="manager" then
response.Redirect("管理员操作.asp")//在这边跳转可就是不行啊
else if typ="student" then
response.Redirect("学生操作.asp")
end if
end if
end if
rs.close
set rs=nothing
%>
</body>
</html>
[求助]找不到网页。。。。