如何在 DataBound 事件发生时/之前捕获错误
数据绑定完成后,我将触发数据绑定事件。 我想捕获可能发生的任何错误,因此我不运行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请注意,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?
您可以使用 OnDataBinding 事件,该事件在数据绑定上启动...=)(在数据绑定事件之前)
You could use OnDataBinding event which kicks in... on data binding =) (before databound event)