Codebase list ohcount / upstream/3.1.1 test / src_dir / jsp1.jsp
upstream/3.1.1

Tree @upstream/3.1.1 (Download .tar.gz)

jsp1.jsp @upstream/3.1.1raw · history · blame

<html> 
	<head> 
	<title>JSP page</title> 
	</head> 
	<body> 
		<%@ page language="java" %> 
		<% out.println("Hello World"); %> 
		<% // comment 
		/*
		 * more comment
		 */
		%>
	</body> 
</html>