<%@ page language="java" %>
<html> 
<head> <title>Hello World</title></head> 
<body>

	<%-- JSP Comment 
		 Line 2
		 Line 3
	--%>

	<!-- HTML Comment -->

<%
	/**
	 * This is about <code>JavaCode</code>.
	 * {@link com.yourCompany.aPackage.SuperClass}
	 * @author author
	 */
	String sParam = request.getParameter("param"); 
	// Java Single line comment
	if (sParam != null)
	{
%>
		<h1>Wellcome <%= sParam %></h1>
<%
	}
	else
	{
		/*	Multi line comment
			Line 2
			Line 3
		*/
%>
		<h3>What's your name?</h3> 
		<form action="Test2.jsp" method="post"> 
		Name: <input type="text" name="param"><br>
		<input type="submit" value=" Send ">
		</form>
<%
	}
%>
</body> 
</html>