Hi All,
I have the following code on my page, but I don't see the wheel spinning when I try to run the application.
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"><title></title></head><body><form id="form1" runat="server"><asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true"></asp:ScriptManager><div><center> History table</center> </div><div><asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="pannel"><ProgressTemplate><div id="dvProgress" runat="server" style="position: absolute; top: 300px; left: 550px; text-align: center;"></div> Please wait to retrieve data...</ProgressTemplate></asp:UpdateProgress></div><div><asp:Image ID="Image2" runat="server" Height="46px" Width="47px" ImageUrl="~/Images/25-1.gif" /><asp:GridView ID="GrdHistory" runat="server" AutoGenerateColumns="False" CellPadding="4" AllowSorting="True" CssClass="labelBoldx" ShowFooter="True" Font-Size="Small" ForeColor="Black" AllowPaging="false" HeaderStyle-BackColor="#999999" ><Columns></Columns></asp:GridView></div></form></body></html>
I didn't write the grid columns, but this grid takes too much time to load. I want that spinning wheel to display, but it doesn't display at all.
any help will be appreciated.