findstep_1.jsp
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:1k
源码类别:

Applet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <jsp:useBean id="findstep" class="MyFly.Bean.findstep" scope="request"/>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  7. <title>无标题文档</title>
  8. </head>
  9. <%!
  10.    String fun(String str)
  11.    {
  12.       try
  13.   {
  14.       return new String(str.getBytes("ISO8859_1"));
  15.   }
  16.   catch(Exception e)
  17.   {
  18.      return "";
  19.   }
  20.    }
  21. %>
  22. <%
  23. String name=(String)request.getParameter("userid");
  24. String rand = (String)session.getAttribute("rand");
  25. String yzm = request.getParameter("yzm");
  26. if (rand.equals(yzm))
  27. {
  28. if(findstep.getUsername(name)==1&&findstep.getUserfind(name)==1)
  29. {
  30.   session.setAttribute("username",name);
  31.   response.sendRedirect("findstep2.jsp");
  32. }
  33. else{
  34. out.println("<Script language=JavaScript>alert('您输入的用户名有误或您就没设置密码答案');javascript:history.back();</Script>");
  35. }
  36. }
  37. else
  38. {
  39.  out.println("<Script language=JavaScript>alert('您的验证码出错了');javascript:history.back();</Script>");
  40. }
  41. %>
  42. <body>
  43. </body>
  44. </html>