📄 chap1-10b.jsp
字号:
<%@ page contentType="text/html;charset=GBK" %>
<HTML>
<HEAD>
<title>简易购物车session2</title>
</HEAD>
<%
session.setAttribute("shop",session.getAttribute("shop")+"苹果,");
session.setAttribute("price",session.getAttribute("price")+" 200,");
out.println(session.getAttribute("shop") + "<br>");
out.println(session.getAttribute("price") + "<br>");
%>
<BODY>
<br>
<a href="chap1-10c.jsp">chap1-10c.jsp</a>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -