| 1. |
Which Property Needs To Be Set For Script Manager Control To Extend The Time Before Throwing Time Out Expection If No Response Is Received From The Server? |
|
Answer» AsyncPost BackTimeout Property NEEDS to SET which gets or sets a VALUE that indicates the time, in SECONDS, before asynchronous POSTBACK time out if no response is received from the server. <asp :script manager id = "script Manager1" runat = "server" async = "" postback = "" error = "" message = "We can not serve your request at this moment.Please try later." asyncpost back timeout = "36000" > < /asp :script manager > The default value of this property is 90 second. We can also set the user defined error message using asyncpostbackerrormessage property (as shown in above code) for time out. AsyncPost BackTimeout Property needs to set which gets or sets a value that indicates the time, in seconds, before asynchronous postback time out if no response is received from the server. <asp :script manager id = "script Manager1" runat = "server" async = "" postback = "" error = "" message = "We can not serve your request at this moment.Please try later." asyncpost back timeout = "36000" > < /asp :script manager > The default value of this property is 90 second. We can also set the user defined error message using asyncpostbackerrormessage property (as shown in above code) for time out. |
|