Return to Snippet

Revision: 23451
at February 8, 2010 05:13 by mattstopa


Initial Code
<html>
  <% String userName = request.getParameter("name");
     if (userName == null) userName = "World"; %>
  Hello, <%= userName %> // The <%= means that you are going to output the value
</html>

Initial URL

                                

Initial Description

                                

Initial Title
JSP Basics - Basic variable insertion and using the get method

Initial Tags

                                

Initial Language
Java