01 <html><head><title>Nákupné centrum ... </title></head>
02 <%@ page contentType="text/html;charset=windows-1250" %>
03
04
05 <%
06 HttpSession ses = request.getSession(true);
07 if (ses.isNew()){
08 ses.setAttribute("Philips_DVD640",new Integer(0));
09 ses.setAttribute("Pioneer_DV-454",new Integer(0));
10 ses.setAttribute("Philips_28PW8707",new Integer(0));
11 ses.setAttribute("Sony_KV-32FX68K",new Integer(0));
12 ses.setMaxInactiveInterval(600);
13 }
14 %>
15
16 <body><b>Naša aktuálna akciová ponuka:</b>
17 <p>
18 <form method="post" action='<%= response.encodeURL("shopservlet")%>'>
19 <table border="0">
20 <tr><td colspan="3" align="left">
21 <em><strong>DVD prehrávače:</strong></em></td><td>v košíku</td></tr>
22 <tr><td>Philips DVD640</td>
23 <td align="right">7880,- Sk</td>
24 <td> <input type="text" name="Philips DVD640" size="1" value="0"></td>
25 <td align="right">
26 <b><% out.print(ses.getAttribute("Philips_DVD640"));%></b></td></tr>
27 <tr><td>Pioneer DV-454</td>
28 <td align="right">15880,- Sk</td>
29 <td> <input type="text" name="Pioneer DV-454" size="1" value="0"></td>
30 <td align="right">
31 <b><% out.print(ses.getAttribute("Pioneer_DV-454"));%></b></td></tr>
32 <tr><td><em><strong>Televízory:</strong></em></td></tr>
33 <tr><td>Philips 28PW8707</td>
34 <td align="right">19880,- Sk</td>
35 <td> <input type="text" name="Philips 28PW8707" size="1" value="0"></td>
36 <td align="right">
37 <b><% out.print(ses.getAttribute("Philips_28PW8707"));%></b></td></tr>
38 <tr><td>Sony KV-32FX68K</td>
39 <td align="right">39880,- Sk</td>
40 <td> <input type="text" name="Sony KV-32FX68K" size="1" value="0"></td>
41 <td align="right">
42 <b><% out.print(ses.getAttribute("Sony_KV-32FX68K"));%></b></td></tr>
43 </table>
44 <input type="submit" name="submit" value="Vložiť tovar do košíka">
45 <input type="submit" name="submit" value="Objednať obsah košíka">
46 </form></body></html>
|