AsyncPostBackTrigger 无法在网格 EmptyDataTemplate 中找到按钮

发布于 2024-12-15 20:52:41 字数 652 浏览 0 评论 0 原文

您好,我在网格内添加了以下按钮:

<EmptyDataTemplate>
        <asp:Button ID="Button1" runat="server" CssClass="fancy-button" 
            onclick="Button1_Click" Text="Adauga un spatiu" />

    </EmptyDataTemplate>

背后的代码:

 protected void Button1_Click(object sender, EventArgs e)
    {

        adsDetails.ChangeMode(DetailsViewMode.Insert);
    }

当我单击按钮并尝试添加时,该按钮不会触发:

 <asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />

我收到:“无法找到 ID 为“Button1”的控件UpdatePanel 'AddressGridViewUpdatePanel' 中的触发器“

知道如何解决此问题吗? 谢谢。

Hello i added the following button inside of a grid:

<EmptyDataTemplate>
        <asp:Button ID="Button1" runat="server" CssClass="fancy-button" 
            onclick="Button1_Click" Text="Adauga un spatiu" />

    </EmptyDataTemplate>

The code behind for this:

 protected void Button1_Click(object sender, EventArgs e)
    {

        adsDetails.ChangeMode(DetailsViewMode.Insert);
    }

The button doesn't fire when i click on it and i tried to add :

 <asp:AsyncPostBackTrigger ControlID="Button1" EventName="Click" />

I receive : "A control with ID 'Button1' could not be found for the trigger in UpdatePanel 'AddressGridViewUpdatePanel'. "

Any idea how i could fix this?
Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你的占有欲 2024-12-22 20:52:41

AsyncPostBackTrigger 需要同一命名容器中的指定控件(请参阅 MSDN) 作为父 UpdatePanel。

我建议您使用 ScriptManager.RegisterAsyncPostBackControl 将您的按钮注册为异步触发器。

AsyncPostBackTrigger needs the specified control in the same naming container (see remarks in MSDN) as the parent UpdatePanel.

I suggest you to use ScriptManager.RegisterAsyncPostBackControl to register your button as async trigger instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文