Ask a Question related to ASP.NET General, Design and Development.
-
I. Adler #1
browser stop
hi
when the user is pressing the stop button in the browser toolbar my aspnet
code on the server ist still runnig!
how can i stop this code on the webserver?
the stop button doesnt fire any events so i cant stop my code!
thx, iwan
I. Adler Guest
-
#25970 [Bgs]: Session management fails when I stop the browser while a PHP page is loading.
ID: 25970 User updated by: bueno at catho dot com dot br -Reported By: catia at catho dot com dot br +Reported By: bueno... -
#25970 [Opn->Bgs]: Session management fails when I stop the browser while a PHP page is loading.
ID: 25970 Updated by: sniper@php.net Reported By: catia at catho dot com dot br -Status: Open +Status: ... -
#25970 [Opn->Fbk]: Session management fails when I stop the browser while a PHP page is loading.
ID: 25970 Updated by: iliaa@php.net Reported By: catia at catho dot com dot br -Status: Open +Status: ... -
#25970 [NEW]: Session management fails when I stop the browser while a PHP page is loading.
From: catia at catho dot com dot br Operating system: Debian 3.0 Linux 2.4.20 PHP version: 4.3.2 PHP Bug Type: Session... -
stop master browser on wks
Hello NG How can i stop this 'master browser' thing on a workstation in a domain? Thank you -
Vidar Petursson #2
Re: browser stop
Hi
Try:
Response.IsClientConnected
--
Best Regards
Vidar Petursson
==============================
Microsoft Internet Client & Controls MVP
==============================
"I. Adler" <zenjarplan@yahoo.de> wrote in message
news:1056622428.272900@exnews...> hi
>
> when the user is pressing the stop button in the browser toolbar my aspnet
> code on the server ist still runnig!
> how can i stop this code on the webserver?
> the stop button doesnt fire any events so i cant stop my code!
>
> thx, iwan
>
>
Vidar Petursson Guest
-
bruce barker #3
Re: browser stop
no. the server will not detect the client shut down its connection until it
sends the response data back. if you turn off buffering and keep flushing
the response buffer, you may detect it sooner by checking
Response.IsClientConnected (check after every buffer flush).
-- bruce (sqlwork.com)
"I. Adler" <zenjarplan@yahoo.de> wrote in message
news:1056622428.272900@exnews...> hi
>
> when the user is pressing the stop button in the browser toolbar my aspnet
> code on the server ist still runnig!
> how can i stop this code on the webserver?
> the stop button doesnt fire any events so i cant stop my code!
>
> thx, iwan
>
>
bruce barker Guest



Reply With Quote

