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 >
Wrap
Text File
|
2001-04-02
|
956b
|
45 lines
<%--menu.jsp
Stampa il menu iniziale dell'applicazione
--%>
<%@ page errorPage="/jsp/error.jsp" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>
Gestione studenti
</title>
<base href="<%= request.getScheme() %>://<%= request.getServerName()%>:<%= request.getServerPort() %><%= request.getContextPath() %>/">
</head>
<body>
<h1>Menu</h1>
<ul>
<li>
<form method="post" action="servlet/Main?cmd=vis">
Visualizza studente matricola: <input type="text" name="matricola">
<input type="submit" value="Trova!">
</form>
</li>
<li>
<a href="servlet/Main?cmd=vis-tutti">Visualizza tutti gli studenti</a>
</li>
<li>
<a href="servlet/Main?cmd=ins">Inserisci studente</a>
</li>
</ul>
<p>
<a href="http://validator.w3.org/check/referer">Valida il documento</a>
</p>
</body>
</html>