母版页中的ScriptManager无法正常工作的子页面中的Ajax

时间:2013-12-24 15:54:30

标签: asp.net asp.net-ajax master-pages scriptmanager

所以,我在主页面上有这个ScriptManager。

            <asp:ScriptManager ID="ScriptManager1" EnablePartialRendering="true" runat="server">
                <Scripts>
                    <asp:ScriptReference Path="~/SIG/MasterPage/js/jquery-1.4.2.min.js" />
                    <asp:ScriptReference Path="~/SIG/MasterPage/js/cufon-yui.js" />
                    <asp:ScriptReference Path="~/SIG/MasterPage/js/cufon-georgia.js" />
                    <asp:ScriptReference Path="~/SIG/MasterPage/js/script.js" />
                    <asp:ScriptReference Path="~/SIG/MasterPage/js/coin-slider.min.js" />
                </Scripts>

我在contentplaceholder中有一个包含此代码的子页面:

<asp:UpdatePanel ChildrenAsTriggers="True" UpdateMode="Conditional" ID="UpdatePanel2" runat="server">
    <ContentTemplate>
        <uc1:ListarUtilizadores runat="server" id="ListarUtilizadores" />
    </ContentTemplate>
</asp:UpdatePanel>
在webcontroller里面我有一个asp按钮,我想成为ajax面板的触发器,但它不起作用。

任何帮助吗?

1 个答案:

答案 0 :(得分:0)

我在主页面上有标签表单,但是在纠正它有效之后出现了一些不合适的错误。