小型bbs jsp源代码

时间:2011-09-28 06:06:23
【文件属性】:

文件名称:小型bbs jsp源代码

文件大小:21KB

文件格式:RAR

更新时间:2011-09-28 06:06:23

小型bbs jsp源代码

比较简单完整的jsp代码。如checklogin.jsp <%@ page import="java.sql.*" contentType="text/html;charset=GB2312" %> <% boolean success=true; boolean disable=false; String name=new String(request.getParameter("name").getBytes("ISO8859_1"),"GBK"); //将中文字符转换成标准字符的写法 String password=new String(request.getParameter("password").getBytes("ISO8859_1"),"GBK");%> <%@ include file="conn.jsp"%> <% sql="select * from users where name='"+name+"' and password='"+password+"'"; ResultSet rs =statement.executeQuery(sql); if (rs.next()) { disable=rs.getBoolean("Disable"); if (disable) {success=false;} } else{ success=false; } %> <%@include file="disconn.jsp"%> <% if (success){ session.setAttribute("Name",name); // 思考:为什么用session 存放此变量,还有什么变量能存在session中 response.sendRedirect("list.jsp"); // 页面跳转 ,试试用另一种方式表现 }else if (disable){%> 该用户已经被禁用! <%}else{%> 用户名或密码有误,请重新登录! <%}%> 返回


【文件预览】:
db1.mdb
modify.jsp
checkregister.jsp
list.jsp
conn.jsp
css.css
checklogin.jsp
usermanage.jsp
register.html
disconn.jsp
login.html
checkmodify.jsp
delete.jsp
detail.jsp

网友评论

  • 水平不咋的啊
  • 表示文不对题,不够有页面是我需要的
  • 水平低,用不了啊
  • 不是工程文件,界面太简陋
  • 一般做的 界面不是很好
  • 很不错,符合我的需求
  • 资源不太齐全
  • 不是很适合我的需求
  • 看不太懂哦
  • 资源不错,取自己需要的就好了
  • 水平太低了 看不太懂
  • 水平太低了 看不太懂
  • class chapter10.ConnPool 没有哦