In the following scenarios, the UpdateProgress control will not display automatically:
The UpdateProgress control is associated with a specific update panel, but the asynchronous postback results from a control that is not inside that update panel.
The UpdateProgress control is not associated with any UpdatePanel control, and the asynchronous postback does not result from a control that is not inside an UpdatePanel and is not a trigger. For example, the update is performed in code.
For making the ajax update progress to be working in the above senarion, follow as descibed below.
Underneath the "asp:ScriptManager" element, add the following script:
Replace 'UpdateProgress1' with your Udateprogressbar id and replace 'Button1' with your trigering control id.
More info can be found at
http://www.asp.net/AJAX/Documentation/Live/tutorials/ProgrammingUpdateProgress.aspx
The UpdateProgress control is associated with a specific update panel, but the asynchronous postback results from a control that is not inside that update panel.
The UpdateProgress control is not associated with any UpdatePanel control, and the asynchronous postback does not result from a control that is not inside an UpdatePanel and is not a trigger. For example, the update is performed in code.
For making the ajax update progress to be working in the above senarion, follow as descibed below.
Underneath the "asp:ScriptManager" element, add the following script:
Replace 'UpdateProgress1' with your Udateprogressbar id and replace 'Button1' with your trigering control id.
More info can be found at
http://www.asp.net/AJAX/Documentation/Live/tutorials/ProgrammingUpdateProgress.aspx
No comments:
Post a Comment