<%@page contentType="text/html; charset=EUC-JP"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%> 注文完了

注文完了


以下の商品の注文を承りました。
発送までしばらくお待ちください。

<% int sum = 0;//合計額 int cnt = 1;//カゴの商品数カウント用 %> <% int intPrice = Integer.parseInt((String)pageContext.getAttribute("price"));//価格 String strCode = (String)pageContext.getAttribute("code"); String strVolume = (String)session.getAttribute(strCode);//コードをキーにセッションから購入数を取得 if(strVolume != null && !strVolume.equals("")){ int intVolume = Integer.parseInt(strVolume);//購入数 pageContext.setAttribute("volume",strVolume,pageContext.PAGE_SCOPE); %> <% sum += intPrice * intVolume; cnt++; } %> <% pageContext.setAttribute("sum",String.valueOf(sum),pageContext.PAGE_SCOPE); %>
商品名金額 購入数小計
${productdata.name} <%= strVolume %>個
合計


お買い上げありがとうございました。



ログインページへ戻る
<%if (session!=null){ session.invalidate(); } %>