I am trying to create a web user control for Updateprogerss so that I can drop the control on all my pages. When I created the control in aspx page, it worked fine, but when I transferred the code to web user control, it stopped working. I am sure I am doing somethign wrong, but I am unable to find where the error is. Below is my user control code
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="UpdateProgress.ascx.cs"
Inherits="User_Controls_GenericControls_UpdateProgress" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<script type="text/javascript" language="javascript">
var ModalProgress = '<%= ModalProgress.ClientID %>';
</script>
<div>
<script type="text/javascript" src="../../Scripts/jsUpdateProgress.js"></script>
<asp:Panel ID="panelUpdateProgress" runat="server" CssClass="updateProgress">
<asp:UpdateProgress ID="UpdateProg1" DisplayAfter="0" runat="server">
<ProgressTemplate>
<div style="position: relative; top: 30%; text-align: center;">
<img src="../../images/progress.gif" style="vertical-align: middle" alt="Processing" />
Processing ...
</div>
</ProgressTemplate>
</asp:UpdateProgress>
</asp:Panel>
<asp:ModalPopupExtender ID="ModalProgress" runat="server" TargetControlID="panelUpdateProgress"
BackgroundCssClass="modalBackground" PopupControlID="panelUpdateProgress">
</asp:ModalPopupExtender>
The way I am calling in my aspx page is below
<%@ Page Title="" Language="C#" MasterPageFile="~/Masters/CIS.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="Demo_Default" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<%@ Register Src="~/User Controls/GenericControls/UpdateProgress.ascx" TagName="Progress"
TagPrefix="Update" %>
var ModalProgress = '<%= ModalProgress.ClientID %>';
<asp:Button runat="server" Text="Click Me" ID="btnSubmit" OnClick="btnSubmit_Click" />
</ContentTemplate>
</asp:UpdatePanel>
and my button click code is like below
protected void btnSubmit_Click(object sender, EventArgs e)
{
System.Threading.Thread.Sleep(4000);
}
any help will be greatly appreciated