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