Hi,
I'm trying to increment the (int u) count in my JSP,
Product pdct = (Product) AproductGroup.elementAt(u++);
but I encountered the following error:
java.io.IOException: "Error: Attempt to clear a buffer that's already been flushed"
When I remove the
++
, the message did not appear. Is there another way to increment the count?
Pls help!!!
Thanks.