当我们单击 UpdatePanel 内的 Linkbutton 时,UpdatePanel 返回错误
我在 updatePanel 中有 Linkbutton,当我单击它时,它会返回以下内容 错误
扩展程序不能位于与其扩展的控件不同的 UpdatePanel 中
那么该怎么办
i have Linkbutton inside updatePanel and when i click on it it returns following
error
An extender can't be in a different UpdatePanel than the control it extends
so what to do
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将扩展某些控制的扩展器放在另一个更新面板中;错误就是字面上的意思。一个更新面板中有一个扩展器,但它扩展的控件列在另一个更新面板中,或者扩展器位于更新面板之外,或类似的情况。
HTH。
Put the extender that's extending some control in the other update panel; the error is literally that. There is an extender in one update panel, but the control it extends is listed in another, or the extender is outside the update panel, or something like that.
HTH.