Hi, there

Here I got a strange situation: When my servlet's generating the response as
a table, it checks data for each row of the table before displaying it. But
after invoked the servlet, it doesn't display the row one by one as expected
but display 2 or 3 rows together. I traced the progress by
System.out.println but even when it's saying "now is displaying row 1", the
row 1's still not shown on the web. Thanks for any instruction.

I included 2 private methods CheckData(HttpServletRequest request,
PrintWriter out, int row) and DisplayRow(HttpServletRequest request,
PrintWriter out, int row) including the out.println(html stuff for
displaying the row) in the servlet. In doPost, after setContent type as
text/html and getWriter(), show the page using out.println(html stuff), and
for each row, CheckData(request, out, row).

yang
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to