Heres the PCode for a function

Code:
while(!file.EOF)
{
  :1
   while(!file.EOF)
   {
     :2
      file.MoveNext();
   }
  
 :3
}

file.close();
Here is what im doing. I'm pulling things from a recordset... everything works fine, except, when the second loop hits a EOF.
This prints everything out that I want it to, it returns everything to the browser i want to, but, when the second loop hits an EOF it exits and stops loading my page.

Initialy I thought when the second loop hit EOF it was also exiting the first loop. But that is not the case. To me, it looks as if some kind of an error is happening when it hits EOF and stops loading my page. Yes, that must be it, because the bottom section of the interface is also cut off.. meaning no other ASP or HTML is executed. I know this is some kind of EOF problem because it ALWAYS happens with the last recordset (or last product in the table). When the last product is hit, it prints everything inside of that loop, then exits, and stops loading everything else. So the error is happening when the loop terminates?

As to what this error is I have no idea. This ever happen to anyone?