ECOM/hello.jsp

From air
Revision as of 19:02, 30 August 2014 by Donsez (talk | contribs) (Created page with "<html> <head> <title><%= application.getServerInfo() %></title> </head> <body> <h1> Hello <% String pname; // déclaration de variable pname = request.getParameter(...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<html> <head>

   <title><%= application.getServerInfo() %></title>

</head> <body>

Hello <% String pname; // déclaration de variable pname = request.getParameter("name"); // request : objet implicite if (pname== null) { Object aname = request.getAttribute("name"); if(aname==null) { out.println("World"); } else { out.println(aname); } } else { %> Mister <%=pname%> <% } // fin du else %>

</body> </html>