jsp第八周作业

发布时间:2022-06-08 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了jsp第八周作业脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

1.登陆输入用户名密码,判断用户名和密码相同,登陆成功,session中保存用户的用户名,进入主页main.jsp,主页有一个退出按钮,点击,回到登陆页login.jsp。要求:退出登录后,如果在浏览器直接输入主页main.jsp,访问不了,直接跳到登陆页。

2.购物车和上一题一起,在main.jsp中做一个购物车,里面显示3个商品名和价格 每一个后面有一个加入购物车按钮,main.jsp中有一个按钮(或者超链接)可以显示购物车。(选作:在购物车中加删除按钮删除商品)

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>显示购物车</title>
</head>
<body>
    <%
        request.setCharacterEncoding("utf-8");
        String[] sp = request.getParameterValues("sp");
        for (int i = 0; sp != null && i < sp.length; i++) {
            out.print(sp[i] + "<br>");
        }
    %>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <%
        String user = request.getParameter("user");
        String password = request.getParameter("password");
        if (user.equals(password)) {
            session.setAttribute("user", user);
            request.getRequestDispatcher("main.jsp").forward(request,
                    response);
        } else {
            response.sendRedirect("login.jsp");
        }
    %>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <script>
        function yz() {
            if (form.user.value == "") {
                alert('用户名不能为空');
                return;
            }
            if (form.password.value == "") {
                alert('密码不能为空');
                return;
            }
            form.submit();
        }
    </script>
    <form action="index.jsp" method="post" name="form">
        <table>
            <tr>
                <td>用户名:</td>
                <td><input type="text" name="user"></td>
            </tr>
            <tr>
                <td>密码:</td>
                <td><input type="password" name="password"></td>
            </tr>
            <tr>
                <td><input type="button" value="登录" onclick="yz()"></td>
            </tr>
        </table>
    </form>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <%
        String user = (String) session.getAttribute("user");
        if (user == null) {
            response.sendRedirect("login.jsp");
        }
    %>
    欢迎你<%=user%>
    <a href="out.jsp">退出登录</a>
    <form action="cart.jsp" method="post">

        <table border="1" cellpadding="0" cellspacing="0" width="500">

            <thead>
                <tr>
                    <th>商品名称</th>
                    <th>价格</th>
                    <th>加购</th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td>橘子</td>
                    <td>5</td>
                    <td align="center"><input type="checkbox" name="sp" value="橘子">
                    </td>
                </tr>
                <tr>
                    <td>苹果</td>
                    <td>3</td>
                    <td align="center"><input type="checkbox" name="sp" value="苹果">
                    </td>
                </tr>
                <tr>
                    <td>西瓜</td>
                    <td>2</td>
                    <td align="center"><input type="checkbox" name="sp" value="西瓜">
                    </td>
                </tr>
                <tr>
                    <td colspan="3"><input type="submit" value="加购">
                    </td>
                </tr>
            </tbody>
        </table>
    </form>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<!DOCTYPE HTML >
<html>
<head>
<title>My JSP 'index.jsp' starting page</title>
</head>
<body>
    <%
        session.invalidate();
        response.sendRedirect("login.jsp");
    %>
</body>
</html>

jsp第八周作业

jsp第八周作业

 

脚本宝典总结

以上是脚本宝典为你收集整理的jsp第八周作业全部内容,希望文章能够帮你解决jsp第八周作业所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: