Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Sunday, December 2, 2007

How to Passing the out Object to a Method in java



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);
%>

No comments: