sometimes endless loop, sometimes not



I'm having this very weird problem on my website. I'm using ASP, and an
Access 2003 database.

The problem is this:
When i surf to my page, there's usually no problem.
I have this select statement :
SQL = "Select * " _
& "from tblTable " _
& "order by intID desc"
Set RS = Conn.Execute(SQL)
If not RS.Eof Then
Do while not RS.Eof
'show this record on the site
Loop
End if

My recordset is loaded, and i show the records on the site. There are only 4
records for now.

But, sometimes, when i surf to my page (just the same page, just the same
query, only other time), my page goes into an endless loop.

Anyone with any ideas on this? The strange thing is, though it's the same
page, i reacts different on different times.
.



Relevant Pages