Ciao a tutti,
sono 10 anni che programmo ma è la prima volta che mi chiedono una web application.
In pratica sono riuscito a creare la Home Page con questo codice:
codice:
  
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:e="http://java.sun.com/jsf/composite/ezcomp">
    <link rel="stylesheet" type="text/css" href="css/ImpGener.css"/>
    <link rel="stylesheet" type="text/css" href="css/pureCssMenui.css"/>
    <h:head>
        <title>Gestione Noleggi</title>
    </h:head>
    <h:body>
        <table border="1" cellpadding="3" class="clTabellaIntestazione">
            <tbody>
                <tr class="clIntestazione">
                    <td class="scGTT_Logo"><h:graphicImage value="img/GTT_Logo.gif"/></td>
                    <td class="scDescFunz"><e:DescFunz/></td>
                    <td class="scDatiUten"><e:DatiUten/></td>
                </tr>
                <tr class="clBarraMenu">
                    <td colspan="3"><e:BarraMenu/></td>
                </tr>
                <tr class="clContenitoreDati">
                    <td colspan="3"><e:ContDati/></td>
                </tr>
                <tr class="clInformazioniErrori">
                    <td colspan="3"><e:InfoErro/></td>
                </tr>
            </tbody>
        </table>
    </h:body>
</html>
Ora vorrei che in base all'opzione scelta sul menù a cascata nella si ricaricasse la pagina con, al posto di <e:ContDati/> la form che mi serve ma non ci riesco...
Programmo con Netbeans 6.9.1, come framework ho inserito jsf 2.0 con "page language" JSP e uso il server Tomcat 6.0 per il trattamento del database userei Hibernate.
Potete aiutarmi ? Mi servirebbe anche sapere se esiste una documentazione in italiano affidabile.
Grazie
Massimo