isUserExist.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html;charset=utf-8"%>
  2. <%@ page import="com.redmoon.oa.person.*"%>
  3. <%@ page import="cn.js.fan.util.*"%>
  4. <html>
  5. <head>
  6. <title>查询用户是否存在</title>
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8. <%@ include file="inc/nocache.jsp"%>
  9. <link rel="stylesheet" href="common.css" type="text/css">
  10. </head>
  11. <body bgcolor="#FFFFFF" text="#000000">
  12. <jsp:useBean id="fchar" scope="page" class="cn.js.fan.util.StrUtil"/>
  13. <jsp:useBean id="user" scope="page" class="com.redmoon.oa.person.UserDb"/>
  14. <%
  15. boolean re = false;
  16. re = user.isExist(ParamUtil.get(request, "name"));
  17. if (!re)
  18. out.print("<BR><p align=center>该用户名不存在,您可以注册!</p>");
  19. else
  20. out.print("<BR><p align=center>该用户名已存在!</p>");
  21. %>
  22. </body>
  23. </html>