!--a11y-->
Wie sieht das Layout für Ihre Buchseite aus? 
Das Layout für die Ergebnisseite
showbook.htm, das Sie über die Registerkarte Layout festlegen, sieht folgendermaßen aus:|
<%@ page language="abap" %> <%@ include file="head.htm" %> <table width="500"> <tr><td><h1> <%= s_bookdata-title %></h1><%= s_bookdata-subtitle %> </td></tr><tr><td><p align="right"><b> <% DATA author_wa TYPE bsauthors. LOOP AT s_bookdata-authors INTO author_wa. %> <%= author_wa-authfname %> <%= author_wa-authlname %><br> <% ENDLOOP. %> </b></p></td></tr> <tr><td><p><b> <%= s_bookdata-publisher %></b> - <%= s_bookdata-series %></p><br></td></tr><tr><td><p>In this demo, no long book description text is used.</p><br></td></tr> <tr><td><p>Our Price: <%= s_bookdata-our_price %> <%= s_bookdata-catal_curr %> Delivery time: <%= s_bookdata-delivery %> day(s)</p><br></td></tr> <tr><td><form method="POST" action=corder.htm> <p><input type=submit name="onInputProcessing(order)" value="I want to order this book"> </form></td></tr> </table> </body> </html> |
Auch in diese Seite wird wieder das Seitenfragment
head.htm inkludiert.Das gewählte Buch wird mit allen dazugehörigen Informationen, z.B. Preis und Verleger, angezeigt. Es folgt ein Button, der mit HTML-Mitteln realisiert ist, über den das Buch bestellt werden kann.
