clear.jsp
上传用户:xjrzjk
上传日期:2022-07-31
资源大小:1585k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%
  3.   try{
  4.   String strHead = "您放入购物车的物品已全数退回!";
  5.   request.getSession(true).setAttribute("productList", null);
  6.   System.out.println(request.getSession(true).getAttribute("productList"));
  7. %>
  8. <html>
  9. <head>
  10. <title>
  11. 清空购物车
  12. </title>
  13. <link rel="stylesheet" type="text/css" href="style.css">
  14. </head>
  15. <body topmargin="5" bgcolor="#eeeeee">
  16. <div align="center"><center>
  17. <table width="100%" border="0" class="table1" bordercolor="#62ACFF" cellspacing="0" >
  18.   <tr>
  19.      <td width="80%" valign="top"> <p align="center" ><%=strHead%></p>
  20.     <p align="center"> <br><input type="button" value="关闭" name="B2" onclick="window.close();" style="font-size: 9pt"></td>
  21.   </tr>
  22. </table>
  23. </center></div>
  24. </body>
  25. </html>
  26. <%
  27.   }catch(Exception e){
  28.   throw (e);
  29.   }
  30. %>