Hi,
Everything works great until I try to list a directory with approx 6000 files in it.
The source code generated for that page appears to be truncated. i.e. It starts with the file list, no table setup code, etc.
Is there a hard coded limit to the number of files? Or a timeout issue?
Thanks
Snowman
3/12/2008 12:08 AM
Add the line
Response.Buffer = false
into the ASP page that is being called to show your results. The line needs to be in a place in the code where it is executed every time the code is called. That is, don't put it in a subroutine but keep it in the main path.
-- Jiver
Jiver
7/17/2008 2:15 PM