如题,ScriptManager的AsyncPostBackTimeout属性,其单位究竟是什么?MSDN中写的是秒,默认值为90,可是《ASP.NET2.0 AJAX.NET高级编程》(英文版)中,说的是milliseconds。还有人说要是设为0,表示无限制。究竟是怎样的呢?

解决方案 »

  1.   

    ScriptManager..::.AsyncPostBackTimeout 属性 :
    获取或设置一个值,该值指示在未收到响应时异步回发超时前的时间(以秒为单位)。
    http://www.mybuffet.cn
      

  2.   

    一个表示超时的整数(以秒为单位)。默认值为 90 秒。
    http://www.mybuffet.cn
      

  3.   

    AsyncPostBackTimeout 属性 
    获取或设置一个值,该值指示在未收到响应时异步回发超时前的时间(以秒为单位)
    默认值为 90 秒 
      

  4.   

    从CSDN下载频道下载的《ASP.NET2.0 AJAX高级编程》(英文版)(即《Professional ASP.NET 2.0 AJAX》)中,第5章第二节(处理错误)的结尾,在介绍该控件时,却说其单位是milliseconds,令人费解。原文如下:The ScriptManager allows you to customize how long to wait in the browser before considering the request orphaned and timing out. By default, the client will wait for the server to close the connection before assuming that the request has been abandoned. To specify a new default timeout for all requests, you use the AsyncPostBackTimeout property. The unit of measurement is milliseconds. <asp:ScriptManager runat="server" ID="ScriptManager" EnablePartialRendering="true"
    AsyncPostBackTimeout="3000" >