When does response.isClientConnected=false or is it just REALLY the true property that you can test for? In that.... what i'm really trying to ask is this:
I've seen code where they do summin like:
'About to print out records
do while not RS.EOF AND response.clientConnected
'do stuff
rs.movenext
loop
When exactly is the user no longer connected (when response.isClientConnected=false) and can you do stuff when the value of response.isClientConnected changes? Like make changes to a database?