JSP按钮后进入数据库判断后 分别实现 页面跳转
一共有三个页面一个login.jsp一个login_in.jsp一个error.jsp想要实现的功能:判断用户名密码是否同数据库中的一致一致的话跳转到login.jsp不...
一共有三个页面
一个 login.jsp
一个 login_in.jsp
一个 error.jsp
想要实现的功能:
判断用户名 密码是否同数据库中的一致 一致的话跳转到login.jsp 不一致跳转到error.jsp
也就是普通的登录,不过不想用javabean、 servelt之类的来实现 想要纯JSP
问题集中在login.jsp中
不能跳转
————————————————————————————————
代码如下:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*,java.util.*;" errorPage=""%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>movies</title>
<%
%>
</head>
<style type="text/css">
<!--
.STYLE2 {font-size: large}
-->
</style></head>
<body>
<table width="1159" height="252" border="0">
<tr>
<th scope="col"><p>welcome to our site </p>
<p>please log in </p></th>
</tr>
<tr align="center">
<td>user name:
<label>
<input name="user_name" type="text" />
</label></td>
</tr>
<tr align="center">
<td> password:
<label></label>
<label>
<input type="password" name="user_password">
</label></td>
</tr>
<tr align="center">
<td><label>
<input type="submit" name="Submit" vlue="Submit" />
</label></td>
</tr>
<%
String DRIVER = "com.mysql.jdbc.Driver";
Class.forName(DRIVER).newInstance();
Connection con=null;
ResultSet rst=null;
Statement stmt=null;
try{
String url="jdbc:mysql://localhost:3306/movies?user=root&password=888888";
con=DriverManager.getConnection(url);
stmt=con.createStatement();
String user_name=request.getParameter("user_name").trim();
String user_password=request.getParameter("user_password").trim();
user_password=new String(user_password.getBytes("ISO-8859-1"));
user_name=new String(user_name.getBytes("ISO-8859-1"));
String sql = "select * from users where user_name='"+user_name+"'"+"and user_password='"+user_password+"'";
rst=stmt.executeQuery(sql);
while(rst.next()){
//貌似问题是从这里开始的****************************
if (rst.next()==true) {
response.sendRedirect("./login_in.jsp.jsp");
}
else {
response.sendRedirect("./error.jsp");
}
}
rst.close();
stmt.close();
con.close();
}
catch (java.lang.Exception ex) {
ex.printStackTrace();
}
%>
</table>
<p> </p>
</body>
</html>
额..虽然两位都没有解决...
不过 还是谢谢啦
先来先得吧..
我找到问题所在了...
用了两次结果集判断..太大意了 展开
一个 login.jsp
一个 login_in.jsp
一个 error.jsp
想要实现的功能:
判断用户名 密码是否同数据库中的一致 一致的话跳转到login.jsp 不一致跳转到error.jsp
也就是普通的登录,不过不想用javabean、 servelt之类的来实现 想要纯JSP
问题集中在login.jsp中
不能跳转
————————————————————————————————
代码如下:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*,java.util.*;" errorPage=""%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>movies</title>
<%
%>
</head>
<style type="text/css">
<!--
.STYLE2 {font-size: large}
-->
</style></head>
<body>
<table width="1159" height="252" border="0">
<tr>
<th scope="col"><p>welcome to our site </p>
<p>please log in </p></th>
</tr>
<tr align="center">
<td>user name:
<label>
<input name="user_name" type="text" />
</label></td>
</tr>
<tr align="center">
<td> password:
<label></label>
<label>
<input type="password" name="user_password">
</label></td>
</tr>
<tr align="center">
<td><label>
<input type="submit" name="Submit" vlue="Submit" />
</label></td>
</tr>
<%
String DRIVER = "com.mysql.jdbc.Driver";
Class.forName(DRIVER).newInstance();
Connection con=null;
ResultSet rst=null;
Statement stmt=null;
try{
String url="jdbc:mysql://localhost:3306/movies?user=root&password=888888";
con=DriverManager.getConnection(url);
stmt=con.createStatement();
String user_name=request.getParameter("user_name").trim();
String user_password=request.getParameter("user_password").trim();
user_password=new String(user_password.getBytes("ISO-8859-1"));
user_name=new String(user_name.getBytes("ISO-8859-1"));
String sql = "select * from users where user_name='"+user_name+"'"+"and user_password='"+user_password+"'";
rst=stmt.executeQuery(sql);
while(rst.next()){
//貌似问题是从这里开始的****************************
if (rst.next()==true) {
response.sendRedirect("./login_in.jsp.jsp");
}
else {
response.sendRedirect("./error.jsp");
}
}
rst.close();
stmt.close();
con.close();
}
catch (java.lang.Exception ex) {
ex.printStackTrace();
}
%>
</table>
<p> </p>
</body>
</html>
额..虽然两位都没有解决...
不过 还是谢谢啦
先来先得吧..
我找到问题所在了...
用了两次结果集判断..太大意了 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询