%@page import="org.apache.jasper.tagplugins.jstl.core.ForEach"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.sql.ResultSet" %>
我的购物车-51商城
<%
String username=(String)session.getAttribute("username"); //获取会员账号
//未登录,调整至登录界面
if(username==null||username==""){
response.sendRedirect("login.jsp"); //重定向页面到会员登录页面
return;//返回
}
%>
<%@ include file="common-header.jsp"%>
<%@ include file="common-footer.jsp"%>