在 Web 表单中使用 LinqDataSource 时出现错误消息
编码平台:ASP.NET 4.0
我正在将 GridView 与 LinqDataSource 绑定,并启用自动删除功能。
GridView 绑定到产品表。
我有一个产品表和一个与 CategoryID 关联的类别表。
如果我尝试删除产品表中引用的类别,我将无法执行此操作。
这是完全可以接受的,但我希望最终用户收到一些错误消息的通知。
在哪里捕获此错误消息?
Coding Platform: ASP.NET 4.0
I am binding a GridView with LinqDataSource with AutoDelete functionality enabled.
GridView is bound to the Products Table.
I have a Products Table and a Category Table with an association on CategoryID.
If I try to delete a Category that is referred in the Products Table I cannot do that.
Its is totally acceptable, but I want the end user to be notified with some error message.
Where to catch this error message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 datacontext.submitchange() 放入 try cacth 中,如下
所示
{
datacontext.submitchange();
}
抓住()
{
}
put datacontext.submitchange() in try cacth as like below
try
{
datacontext.submitchange();
}
catch()
{
}
最终使用 LinqDataSource 的 OnDeleting 事件
Ended up using OnDeleting event of the LinqDataSource