JSP Java Tutorial

< HTML>
  
    Passing the out Object to a Method
  
  
    

Passing the out Object to a Method


    <%!
    void printem(javax.servlet.jsp.JspWriter out) throws java.io.IOException
    {
        out.println("Hello from JSP!");
    }
    %>
    <%
        printem(out);
    %>