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

link|improve this question

why you needed to do so updateprogress is a control in itself which you can drop on any number of pages. you can also put it in master page if you have one in your website – Devjosh Feb 2 at 17:00
yeah, I could have dropped it any as many pages as i want, but I don't want to include the javascript on those pages. Also, I don't want to write this modalpopup control in all my pages – Anjali5 Feb 2 at 17:11
I figured out. It was the div tag that needs to be removed and the control works!! – Anjali5 Feb 2 at 17:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.