如何为中继器控件内的控件设置更新面板触发器?

发布于 2024-12-19 18:29:25 字数 156 浏览 2 评论 0原文

我在我的网页中使用了 ajax 更新面板。我想在更新面板上设置触发器。我将 asp.net 链接按钮控件放置在 asp.net 转发器控件中。当我单击中继器控件中的链接按钮时,更新面板上的内容应该更新。我使用了链接按钮的 onclick 事件。那么这种情况下如何设置触发器呢?

谢谢

I've used ajax update panel in my web page. I want to set the trigger on the update panel. I have asp.net link button control placed in the asp.net repeater control. The content on the update panel should update when i click on the link button from repeater control. I used onclick event of the link button. Then how to set the trigger in this case?

thanks

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

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

发布评论

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

评论(1

往事随风而去 2024-12-26 18:29:25

我通过使用以下方式解决了这个问题 -

protected void rptPagerCustomerUp_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    LinkButton lb = e.Item.FindControl("lnkPage") as LinkButton;
    ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(lb);  
}

I solved the problem by using following way-

protected void rptPagerCustomerUp_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    LinkButton lb = e.Item.FindControl("lnkPage") as LinkButton;
    ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(lb);  
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文