我有一个根据用户选择使用Ajax动态构建的表单(使用UpdatePanel在.NET Ajax中构建)。
如何在回发发生时插入“标准” ajax加载图标(也许已将其附加到鼠标指针),然后在回发完成时将其删除?
如果有帮助,我确实安装了AjaxToolKit。
使用工具包的更新进度:希望这会帮助您
<asp:updatepanel id="ResultsUpdatePanel" runat="server"> <contenttemplate> <div style="text-align:center;"> <asp:updateprogress id="UpdateProgress1" runat="server" associatedupdatepanelid="ResultsUpdatePanel" dynamiclayout="true"> <progresstemplate> <img src="support/images/loading.gif"> </progresstemplate> </asp:updateprogress> </div> //your control code </contenttemplate> </asp:updatepanel>