http://www.codemiles.com/jsp-examples/use-out-object-in-a-method-at-jsp-t3348.html <HTML> <HEAD> <TITLE>Use the out Object in JSP defined Method</TITLE> </HEAD> <BODY> <H1>Use the out Object in JSP defined Method</H1> <%! void printmyname(javax.servlet.jsp.JspWriter out) throws java.io.IOException { out.println("My name is Tom"); } %> <% ..