Gridview 服务器事件停止触发

发布于 2024-07-20 06:31:52 字数 441 浏览 4 评论 0原文

有一个常见的带有模板列的 Gridview

<ItemTemplate>
    "lbOpen" Text='Select' runat="server" OnCommand="lbOpen_Command"
    CommandName="open" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "OrderID") %>'  />                                    

意外且未知的原因“lbOpen_Command”停止触发。 在 OnInit() 页面停止后,“lbOpen_Command”处的断点未命中。 .aspx 页面和事件执行链没有任何变化。

可能是什么原因? 有什么建议么?

提前致谢。

There's the usual Gridview with template column

<ItemTemplate>
    "lbOpen" Text='Select' runat="server" OnCommand="lbOpen_Command"
    CommandName="open" CommandArgument='<%# DataBinder.Eval(Container.DataItem, "OrderID") %>'  />                                    

Unexpectedly and by unknown reason "lbOpen_Command" ceased to fire.
After stop at page OnInit() breakpoint at "lbOpen_Command" does not hit.
There were no even a least changes to .aspx page and event execution chain.

What can be the reason? Any suggestions?

thanks in advance.

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

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

发布评论

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

评论(1

梦途 2024-07-27 06:31:52

您在页面执行时间线的哪个点将数据绑定到数据网格? 如果您在 lbOpen_Command 事件被触发之前执行此操作,则可能会清除该事件。

At what point in the page execution timeline are you binding data to the datagrid? Its possible that if you're doing so before the lbOpen_Command event would be fired that you're wiping the event out.

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