home *** CD-ROM | disk | FTP | other *** search
/ ftp.disi.unige.it / 2015-02-11.ftp.disi.unige.it.tar / ftp.disi.unige.it / pub / .person / CataniaB / teach-act / DB3 / servlet-bean-jsp / menu.jsp < prev    next >
Text File  |  2001-04-02  |  956b  |  45 lines

  1. <%--menu.jsp
  2.   Stampa il menu iniziale dell'applicazione
  3. --%>
  4. <%@ page errorPage="/jsp/error.jsp" %>
  5.  
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  7.       "http://www.w3.org/TR/REC-html40/loose.dtd">
  8.  
  9. <html>
  10. <head>
  11.   <title>
  12.     Gestione studenti
  13.   </title>
  14.   <base href="<%= request.getScheme() %>://<%= request.getServerName()%>:<%= request.getServerPort() %><%= request.getContextPath() %>/">
  15. </head>
  16.  
  17. <body>
  18.   <h1>Menu</h1>
  19.  
  20.   <ul>
  21.  
  22.   <li>
  23.   <form method="post" action="servlet/Main?cmd=vis">
  24.   Visualizza studente matricola: <input type="text" name="matricola">
  25.   <input type="submit" value="Trova!">
  26.   </form>
  27.   </li>
  28.  
  29.   <li>
  30.   <a href="servlet/Main?cmd=vis-tutti">Visualizza tutti gli studenti</a>
  31.   </li>
  32.  
  33.   <li>
  34.   <a href="servlet/Main?cmd=ins">Inserisci studente</a>
  35.   </li>
  36.  
  37.   </ul>
  38.  
  39.   <p>
  40.   <a href="http://validator.w3.org/check/referer">Valida il documento</a>
  41.   </p>
  42.  
  43. </body>
  44. </html>
  45.