I need Progress Bar for entire page but not AjaxLoadingPanel.I do have AjaxLoadingPanel when I click on first radgrid and gives me a data on the second radgrid but I need again for entire page.The following code is include search button .I want click search button and progress bar is displayed and I also need progress bar when value is change in RadComboBox.CFNList is a user control and I have two RadComboBox in there.
<asp:Panel ID="Job_Report" runat="server" Width="805px">
<
fieldset>
<
legend>Search Bulk Job</legend>
<table>
<tr>
<td>
<uc1:CFNList id="CFNList1" runat="server">
</uc1:CFNList>
</td>
<td>
Job:
<br />
<telerik:RadTextBox ID="JobTextBox" runat="server" Width="100px" MaxLength="5"></telerik:RadTextBox>
</td>
<td>
Title:
<br />
<telerik:RadTextBox ID="TitleTextBox" runat="server" Width="100px" MaxLength="5"></telerik:RadTextBox>
</td>
<td>
<br />
<asp:Button ID="SearchJob" runat="server" Width="95px" Height="24px" CssClass="Button" Text="Search" OnClick="Search_Job_Click" OnClientClick="JavaScript: return ValidateData();" />
</td>
</tr>
<tr>
<td class="tbtxtbox" colspan="3" style="height:20px;">
<asp:Label ID="lblError" runat="server" Height="10px" Font-Size="Small" ForeColor="red" >
</asp:Label>
</td>
</tr>
</table>
</fieldset>
</asp:Panel>
As always you are big help for me.Thanks so much.