Codebase list ohcount / debian/latest test / src_dir / jsp1.jsp
debian/latest

Tree @debian/latest (Download .tar.gz)

jsp1.jsp @debian/latestraw · history · blame

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