Hi,
We are using logic iterator in JSP to show number of records. the page rendering is taking lot of time. When observed it found that size of the rendered page is huge with lot of empty spaces. If we manually remove the empty space in a rendered page in notepad, its size becomes 1/4th.
Is it a issue with Logic iterator? Or is there anyway to remove those empty spaces? and How?

Thanks and regards

It might help to see this "LOGIC ITERATOR", but if you are doing something akin to

while(next()) {
  if (valid) {
    print data
  }
  print newline
}

then, yes, of course, it is coming from your "LOGIC ITERATOR", don't do that.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.