Jsp 简单的 注册 登录

注册

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>register</title>
</head>
<body>
    <form action="login.jsp" name="form1" method="post" onclick="return Info">
        <p><span class="uInfo">用户名</span><input type="text" name="uname"></p>
        <p><span class="uInfo">密码</span><input type="password" name="pwd"></p>
        <p><span class="uInfo">专业</span>
        <select name="major" id="">
            <option value="computer">计算机</option>
            <option value="math">数学</option>
            <option value="chinese">语文</option>
        </select>
        </p>
        <input type="submit" value="提交">
    </form>
</body>
<%request.setCharacterEncoding("utf-8") ;%>
    <script>
        function Info(){
            if(form1.uname.value==""){
            return false;
            }
        }
    </script>
</html>

登录

<%@page import="jdk.nashorn.internal.ir.RuntimeNode.Request"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>注册的用户</title>
</head>
<body>
<%
    request.setCharacterEncoding("utf-8"); 
    %>
    <%!
        public String codeToString(String str){//处理中文字符串的函数
            String s=str;
            try{
                byte tempB[]=s.getBytes("utf-8");
                s=new String(tempB);
                return s;
            }catch(Exception e){
                return s;
            }

        }
    %>
    <p><span class="uInfo">用户名:</span><%=request.getParameter("uname")%></p>
    <p><span class="uInfo">密码:</span><%=request.getParameter("pwd")%></p>
    <p><span class="uInfo">专业:</span><%=request.getParameter("major")%></p>



</body>

</html>

猜你喜欢

转载自blog.csdn.net/weiyumeizi/article/details/72677580