如何在 DataBound 事件发生时/之前捕获错误

发布于 2024-11-15 17:01:00 字数 366 浏览 3 评论 0原文

数据绑定完成后,我将触发数据绑定事件。 我想捕获可能发生的任何错误,因此我不运行 StoredProc“sp_UpdatePrintQueueToPrinted”。

如何在 DataBound 事件发生时/之前捕获错误?

        protected void ListView1_DataBound(object sender, EventArgs e)
    {
        using (GPEntities gpe = new GPEntities())
        {
            gpe.sp_UpdatePrintQueueToPrinted();              
        }
    }

Once the databind is completed, I fire off the databound event.
I wanted to catch any error that might have occurred so I dont run the StoredProc "sp_UpdatePrintQueueToPrinted".

How do I Catch errors on/before DataBound event?

        protected void ListView1_DataBound(object sender, EventArgs e)
    {
        using (GPEntities gpe = new GPEntities())
        {
            gpe.sp_UpdatePrintQueueToPrinted();              
        }
    }

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

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

发布评论

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

评论(2

め七分饶幸 2024-11-22 17:01:00

请注意,OnDataBound 在数据绑定结束时发生。 OnDataBinding 在数据绑定开始后立即发生。

您是否试图捕获与实际数据绑定本身相关的错误?如果是这样,请使用 try catch 语句包装 .DataBind() 事件。或者您是否因数据绑定而跟踪了一些其他偶然错误?

Note that OnDataBound occurs when databinding ends. OnDataBinding occurs as soon as data binding begins.

Are you trying to catch errors relating to the actual databinding itself? If so, wrap your .DataBind() event with a try catch statement. Or is there some other incidental error that you are tracking as a result of the databinding?

流殇 2024-11-22 17:01:00

您可以使用 OnDataBinding 事件,该事件在数据绑定上启动...=)(在数据绑定事件之前)

You could use OnDataBinding event which kicks in... on data binding =) (before databound event)

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