java.io.IOException:Data has already been flushed to the client
hi,
will u please anyone tell about this exception? its very urgent to me?
i am getting exception when i ma forwarding a page in jsp.
exception is :
java.io.IOException : Data has already been flushed to the client.
my code where i am getting this exception is:
if(filled_var .equalsIgnoreCase("y"))
{
%>
<jsp:forward page="/editForm.jsp">
<jsp:param name="formNum" value="<%= formNum%>"/>
</jsp:forward>
<%
}
here i am getting that error. please help me to find a solution in this.

