我创建一个用户控件中,拖入一个UpdateProgress控件,然后把用户控件添加到页面。
-----------------------------------------------------
结果报错:
呈现控件时出错-UpdateProgress1
发生了未处理的异常
The Control whith ID 'UpdateProgress1' requires a ScriptMangager on the page.The ScriptManager must apper before any controls that need it.
-----------------------------------------------------<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Src="WebUserControl.ascx" TagName="WebUserControl" TagPrefix="uc1" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server" />
        <div>
            <uc1:WebUserControl ID="WebUserControl1" runat="server" />
        </div>
    </form>
</body>
</html>
用户控件代码:<%@ Control Language="C#" AutoEventWireup="true" CodeFile="WebUserControl.ascx.cs" Inherits="WebUserControl" %>
<asp:UpdateProgress ID="UpdateProgress1" runat="server">
<ProgressTemplate>
</ProgressTemplate>
</asp:UpdateProgress>

解决方案 »

  1.   


    <%@ Control Language="C#" AutoEventWireup="true" CodeFile="WebUserControl.ascx.cs" Inherits="WebUserControl" %>这应该是用户自定义控件的代码吧?
      

  2.   


    <asp:UpdateProgress ID="UpdateProgress1" runat="server">
    <ProgressTemplate>
    </ProgressTemplate>
    </asp:UpdateProgress>
    去掉这些试试。
      

  3.   

    你把        <asp:ScriptManager ID="ScriptManager1" runat="server" />
    放到用户控件里面去。
    在使用 UpdateProgress 之前必须要加上ScriptManager,但是又只能有一个,你在用户控件中使用了,在页面上就可以不用写了,
    你看一下,可以吗?
      

  4.   

    不能放在用户控件中,ScriptManager这个我原本想放在母板页中的