Java开发网 |
注册 |
登录 |
帮助 |
搜索 |
排行榜 |
发帖统计
|
您没有登录 |
» Java开发网 » Servlet/JSP/JSF/JavaFX Script
打印话题 寄给朋友 订阅主题 |
作者 | jsp登陆数据库判断的问题 |
nogod
发贴: 11 |
于 2004-10-11 12:55
<%@ page import="java.sql.*"%> <% String xingming,mima; xingming=request.getParameter("name"); mima=request.getParameter("pasd"); if(xingming == null or mima == null) { response.sendRedirect ("error.jsp"); } if (xingming != null and mima != null) { try{ String url="jdbc:odbc:home"; Connection conn; Class.forName("sun.jdbc.odbc.JdbcOddbcDriver"); conn=DriverManager.getConnection(url,"",""); Statement stmt = conn.createStatement(); ResultSet rs; String cx="select * from admin where name='"+xingming+"' and pasd='"+mima+"'"; rs=st.executeQuery(cx); if(rs.next()) { if(xingming.equals("0")) { response.sendRedirect ("main.jsp"); } else { response.sendRedirect("error.jsp"); } } } catch(Exception e) { out.println("执行操作失败"); } } %> 我的意思是当 用户名和密码有一个为空的时候,让它出现error.jsp,当都不为空的时候,先检查数据库里有没有这个名字和密码,然后,再判断。我的所有的代码都是下在.jsp文件里的,没用bean文件,数据库都能成功连接了。可是为什么老是出这个样的错误呢。 C:\Program Files\work\Standalone\localhost\_\home\main$jsp.java:67: ')' expected. if(xingming == null or mima == null) ^ An error occurred between lines: 12 and 50 in the jsp file: /home/main.jsp Generated servlet error: C:\Program Files\work\Standalone\localhost\_\home\main$jsp.java:71: ')' expected. if (xingming != null and mima != null) ^ 2 errors, 1 warning java 怎么装不上啊 |
话题树型展开 |
人气 | 标题 | 作者 | 字数 | 发贴时间 |
1899 | jsp登陆数据库判断的问题 | nogod | 1280 | 2004-10-11 12:55 |
1562 | Re:jsp登陆数据库判断的问题 | nothing | 180 | 2004-10-11 13:16 |
1584 | Re:jsp登陆数据库判断的问题 | nogod | 34 | 2004-10-11 20:25 |
1793 | Re:jsp登陆数据库判断的问题 | chengbd | 9 | 2004-10-12 15:56 |
已读帖子 新的帖子 被删除的帖子 |
Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1 客服电话 18559299278 客服信箱 714923@qq.com 客服QQ 714923 |