Method 1: 1) In HTML Header, before HTML Body, hourglass cursor <script language="javascript"> document.body.style.cursor = 'wait' 2) Add "Please Wait" Label (Visible = true) <asp:label id="lblPleaseWait" Text="Loading data, please wait..." ForeColor="Red" Visible="True" CssClass="labelCopy" Runat="server" Font-Size="Medium">...pl... wait...</asp:label> 3) At end of HTML Body, make label not visible, default cursor <script language="javascript"> document.getElementById('lb...