简单做了界面,代码功能应该没有问题,简单做个文档分享一下。
登录界面
denglu.jsp:
<%@page contentType="text/html;charset=gb2312" %>
<html>
  <head>
    <title>登录界面</title>
    <script>
    function check()
    {
      if(document.dlForm.UserN.value=="")
      {
          alert("用户名不能为空");
          document.dlForm.UserN.focus();
          return false;
      }
      if(document.dlForm.UserP.value=="")
      {
          alert("密码不能为空");
          document.dlForm.UserP.focus();
          return false;
      }
      document.dlForm.submit();
      return true;
    }
    </script>
  </head>
  <body>
  <center>
          <font size="6"> 欢迎进入登录界面 </font>
    <form action="dlhou.jsp" onsubmit="return check()" method="post" name="dlForm">
    <p>用户名:<input type="text" name="UserN" /></p>
    <p>密  码:<input type="password" name="UserP" /></p>
    <p><input type="submit" value=" 登  录 " />    <input type="button" value="忘记密码" onclick="parent.location.href('wangji.jsp')" />    <input type="button" value="返回主页" onclick="parent.location.href('welcome.jsp')" /></p></FORM>
    </center>
  </body>
web端登录
</html>
dlhou.jsp
<%@page contentType="text/html;charset=gb2312" %>
<%@page language="java" import="java.sql.*" %>
<jsp:useBean id="SQLbean" scope="session" class="lian.Lian"/>
<html>
<head>
<title>登录状态</title>
</head>
<body>
  <div align="center">
    <span class="style1">登录状态</span><br><hr><br>
  </div>
    <%
      String Parameter("UserN");
      String Parameter("UserP");
    // out.print(userN);
      String sql="select * from yxx where yname='"+userN+"'";
      SQLbean.OpenConn();
      ResultSet uteQuery(sql);
      if(!rs.next())
      {
        %>
        <script>
            alert("用户名不存在!");
            window.location.href="denglu.jsp";
        </script>
        <%
      }
      // ())
      else
      {
          String String("ypassword").trim();
          if(p.im()))
        //    response.sendRedirect("zhu.jsp?param="+userN);
             
          {
              session.setAttribute("yhm",userN);
             
              // response.sendRedirect("zhu.jsp");
      %>
              <script>
                alert("恭喜您,登录成功!");
                window.location.href="zhu.jsp";
            </script>
      <%
          }
          else
          {
      %>
        <script>
            alert("密码错误!");
            window.location.href="denglu.jsp";
        </script>
      <%
          }
      }
        rs.close();
        SQLbean.closeSt();
        SQLbean.closeConn();
      %>
</body>
</html>
注册界面:
<%@page contentType="text/html;charset=gb2312" %>
<html>
  <head>
    <title>注册界面</title>
    <script>
    function zcheck()
    {
      Form.UserN.value=="")
      {
          alert("用户名不能为空");
          Form.UserN.focus();
          return false;
      }
      Form.UserP.value=="")
      {
          alert("密码不能为空");
          Form.UserP.focus();
          return false;
      }
      UserP.value=="")
      {
          alert("确认密码不能为空");
          UserP.focus();
          return false;
      }
      UserP.value!=Form.UserP.value)
      {
          alert("确认密码和密码不符");
          UserP.focus();
          return false;
      }
      return true;
    }
    </script>
  </head>
  <body>
    <center>
          <font size="6"> 欢迎进入注册界面 </font><br><br>
          <font size="4"> 基本信息注册 </font>
    <form action="zchou.jsp" onsubmit="return zcheck()" method="post" name="zcForm">
    <p>   用户名:  <input type="text" name="UserN" />  <font color="red">*</font></p>
    <p>   密    码:<input type="password" name="UserP" />  <font color="red">*</font></p>
    <p>   确认密码:<input type="password" name="reUserP" />  <font color="red">*</font></p>
    <p>   性    别:   <input type="radio" name="UserS" value="Mr." checked="checked"/>男    <input type="radio" name="UserS" value="Ms."/>女     <font color="red">*</font></p>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。