Hi all,
I have an user.asp page(has html display) which displays
the controls; After client-side validations, I do a
document.form.submit() to a process asp page(no html, only
server side processing and then redirects to the user.asp).
This process asp calls some dll functions which might take
a couple of hours if number of records to process is huge.
Now, the dll opens a pop-up window which shows the status
of the results(number of records processed and failed).
After exactly 1 hour, the user.asp page says page cannot
be found. Is it due to some timeout or something? What
could be the reason?

Re: asp submitted to process asp;but calling asp page says:"Page not found" aftr 1hr by Dominique

Dominique
Thu May 06 16:55:29 CDT 2004

test it on a few records so you get an immediate response, then u'll know if
you got a redirect problem..
as far as error trapping goes, either do it in ur dll, or inspect you Server
Logs :o)

"Divya" <anonymous@discussions.microsoft.com> wrote in message
news:936601c43361$ad82c7d0$a101280a@phx.gbl...
> Hi all,
> I have an user.asp page(has html display) which displays
> the controls; After client-side validations, I do a
> document.form.submit() to a process asp page(no html, only
> server side processing and then redirects to the user.asp).
> This process asp calls some dll functions which might take
> a couple of hours if number of records to process is huge.
> Now, the dll opens a pop-up window which shows the status
> of the results(number of records processed and failed).
> After exactly 1 hour, the user.asp page says page cannot
> be found. Is it due to some timeout or something? What
> could be the reason?