So I know there are many demos for this but for some reason it's not working for me. A very simple demo like this will help me out greatly. 
I want the loading panel to show the following event as it happens.
 
 
 
 
I just want the loading panel to display over pnlLoad while it becomes visible. Here's the code behind (again very simple):
Yea this doesn't work for me. Some assistance would be greatly appreciated. Thanks.
                                I want the loading panel to show the following event as it happens.
<rad:RadAjaxManager ID="RadAjaxManager1" runat="server">        <AjaxSettings>                    <rad:AjaxSetting AjaxControlID="btnSavePhoto">                <UpdatedControls>                    <rad:AjaxUpdatedControl ControlID="pnlLoad" LoadingPanelID="RadAjaxLoadingPanel1" />                </UpdatedControls>            </rad:AjaxSetting>                     </AjaxSettings>        </rad:RadAjaxManager><rad:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Skin="Hay" runat="server"></rad:RadAjaxLoadingPanel><asp:Panel ID="pnlLoad" Visible="false" runat="server">Lalalalala Lalalalalal Lalalalalal Lalalalalal Lalalalalal Lalalalalal<br />Lalalalala Lalalalalal Lalalalalal Lalalalalal Lalalalalal Lalalalalal<br />Lalalalala Lalalalalal Lalalalalal Lalalalalal Lalalalalal Lalalalalal<br /></asp:Panel><rad:RadButton ID="btnSavePhoto" runat="server" Skin="Office2007" OnClick="btnSubmit_Click" Text="Click Me"></rad:RadButton>I just want the loading panel to display over pnlLoad while it becomes visible. Here's the code behind (again very simple):
protected void btnSubmit_Click(object sender, EventArgs e)   {       pnlLoad.Visible = true;   }Yea this doesn't work for me. Some assistance would be greatly appreciated. Thanks.