Asp.Net Ajax UpdatePanel : browser timeout

  • Thread starter Thread starter Alphapage
  • Start date Start date
A

Alphapage

Hello,

I want to know how I can catch using javascript when the browser closes the
request because of a browser timeout.
I want to send a new request if that happens.

Thanks in advance for your help.
 
use the Sys.WebForms.PageRequestManager's endRequest event. you can check the
error, and handle however you want.

-- bruce (sqlwork.com)
 
Ok, now I can catch the browser timeout error, but how can I (re)execute the
same request from endRequest ?
 
Back
Top