after publishing a web to iis, asp pages based on a
database fail to work. the browzer starts loading such page
and never does- at some point the status bar stops and the
page never loads without displaying any errors. the browzer
shows that it is busy all the time.

Re: asp fails to execute by Richard

Richard
Thu Oct 16 08:12:51 CDT 2003

"denis" <gusakoff@eudoramail.com> wrote in message
news:2c5e501c393a6$dde39680$a601280a@phx.gbl...
> after publishing a web to iis, asp pages based on a
> database fail to work. the browzer starts loading such page
> and never does- at some point the status bar stops and the
> page never loads without displaying any errors. the browzer
> shows that it is busy all the time.

You would have to post a lot more information than this to get a definitive
answer, but one thing to look for - is there at any point a loop in your
program that looks through an ADODB.Recordset? If the loop is looking for
Recordset.EOF, and you do not have in your code Recordset.MoveNext, yes, you
will get an endless loop that will prevent your page from ever finishing.

R.