Hi there,
I reckon you could handle endRequest event of the PageRequestManager class:
<script type="text/javascript">
function onEndRequest(sender, e)
{
var err = e.get_error();
if (err != null &&
err.name === 'Sys.WebForms.PageRequestManagerTimeoutException')
{
e.set_errorHandled(true);
}
}
Sys.WebForms.PageRequestManager.instance.add_endRequest(onEndRequest);
</script>
hope this helps

Signature
Milosz
> Hello,
>
[quoted text clipped - 8 lines]
>
> Thank you for your time!
urmilshah@gmail.com - 02 Jul 2007 18:53 GMT
I am using update panel and timer it shows me
Sys.WebForms.PageRequestManagerTimeoutException message after 90
seconds which is correct i want to show user understandable message to
the user how can i do that?
- Urmil
On Jun 22, 4:21 am, Milosz Skalecki [MCAD] <mily...@DONTLIKESPAMwp.pl>
wrote:
> Hi there,
>
[quoted text clipped - 36 lines]
>
> - Show quoted text -