INSA - ASI TechnoWeb : Les JSP 4/40
Introduction (2/5)
Premier exemple
hello.jsp
<% @ page con te ntTyp e =" te xt / html ; c harset = utf -8 " %>
<! DOCTYPE html >
<html >
<head >
<title >Ma pr e miè re page JSP </ title >
</ head >
<body >
<% String prenom=request.getParameter("prenom") ; %>
<h1 >Bonjour <%=( prenom!= null && prenom.length() ! =0 ) ? prenom:"
bel ( le ) in co nn u ( e) " % > </ h1 >
<% if (prenom!= null && prenom.equals(" le mon de " )) { %>
<h2 >Bien joué !!!!</h2 >
<% } % >
<form action =" hell o . jsp " method=" post " >
<label >Prénom : </ label >< inpu t type =" text " name="prenom"
size="30">
<input type ="submit" value ="envoyer">
</ form >
</ body >
</ html >