• jsp第四次


    <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
    <%
        String path = request.getContextPath();
        String basePath = request.getScheme() + "://"
                + request.getServerName() + ":" + request.getServerPort()
                + path + "/";
    %>
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <base href="<%=basePath%>">
    
    <title>登录页面</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!-- 
     <link rel="stylesheet" type="text/css" href="styles.css"> 
     -->
    </head>
    
    <body>
        <form action="login_action.jsp" method="post">
            <table>
                <tr>
                    <td colspan="2">登录窗口</td>
                </tr>
                <tr>
                    <td>用户名:</td>
                    <td><input type="text" name="username" />
                    </td>
                </tr>
                <tr>
                    <td>密码:</td>
                    <td><input type="text" name="password" />
                    </td>
                </tr>
                <tr>
                    <td colspan="2"><input type="submit" value="登录" /> <a
                        href="register.jsp">注册</a>
                    </td>
                </tr>
            </table>
        </form>
    </body>
    </html>
    
    
    
    <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
    <%
        String path = request.getContextPath();
        String basePath = request.getScheme() + "://"
                + request.getServerName() + ":" + request.getServerPort()
                + path + "/";
    %>
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <base href="<%=basePath%>">
    
    <title>注册页面</title>
    
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!-- 
     <link rel="stylesheet" type="text/css" href="styles.css"> 
     -->
    </head>
    
    <body>
        <form action="register_action.jsp" method="post">
            <table>
                <tr>
                    <td colspan="2">注册窗口</td>
                </tr>
                <tr>
                    <td>用户名:</td>
                    <td><input type="text" name="username" />
                    </td>
                </tr>
                <tr>
                    <td>密码:</td>
                    <td><input type="text" name="password1" />
                    </td>
                </tr>
                <tr>
                    <td>确认密码:</td>
                    <td><input type="text" name="password2" />
                    </td>
                </tr>
                <tr>
                    <td>email:</td>
                    <td><input type="text" name="email" />
                    </td>
                </tr>
                <tr>
                    <td colspan="2"><input type="submit" value="注册" /> <a
                        href="login.jsp">返回</a>
                    </td>
                </tr>
            </table>
        </form>
    </body>
    </html>
  • 相关阅读:
    10 个深恶痛绝的 Java 异常。。
    为什么公司宁愿 25K 重新招人,也不给你加到 20K?原因太现实……
    推荐一款代码神器,代码量至少省一半!
    Spring Cloud Greenwich 正式发布,Hystrix 即将寿终正寝。。
    hdu 3853 LOOPS(概率 dp 期望)
    hdu 5245 Joyful(期望的计算,好题)
    hdu 4336 Card Collector(期望 dp 状态压缩)
    hdu 4405 Aeroplane chess(概率+dp)
    hdu 5036 Explosion(概率期望+bitset)
    hdu 5033 Building (单调栈 或 暴力枚举 )
  • 原文地址:https://www.cnblogs.com/zrz1/p/14590198.html
Copyright © 2020-2023  润新知