在 Web 表单中使用 LinqDataSource 时出现错误消息

发布于 2024-10-09 01:05:17 字数 215 浏览 3 评论 0原文

编码平台: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 技术交流群。

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

发布评论

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

评论(2

得不到的就毁灭 2024-10-16 01:05:18

将 datacontext.submitchange() 放入 try cacth 中,如下

所示
{
datacontext.submitchange();
}
抓住()
{

}

put datacontext.submitchange() in try cacth as like below

try
{
datacontext.submitchange();
}
catch()
{

}

甜尕妞 2024-10-16 01:05:18

最终使用 LinqDataSource 的 OnDeleting 事件

    protected void LinqDataSource1_Deleting(object sender, LinqDataSourceDeleteEventArgs e)
    {
        try
        {
            Categories category = (Categories)e.OriginalObject;
            if (helper.IsCategoryPresentInProductsTable(category.CategoryID))
            {
                e.Cancel = true;
                StatusLabel.Text = String.Format("{0} is referred in the products table. Delete aborted!",
                    category.CategoryName);
                StatusLabel.Visible = true;
            }
        }
        catch (Exception err)
        {
            Elmah.ErrorSignal.FromCurrentContext().Raise(err);
        }
    }

Ended up using OnDeleting event of the LinqDataSource

    protected void LinqDataSource1_Deleting(object sender, LinqDataSourceDeleteEventArgs e)
    {
        try
        {
            Categories category = (Categories)e.OriginalObject;
            if (helper.IsCategoryPresentInProductsTable(category.CategoryID))
            {
                e.Cancel = true;
                StatusLabel.Text = String.Format("{0} is referred in the products table. Delete aborted!",
                    category.CategoryName);
                StatusLabel.Visible = true;
            }
        }
        catch (Exception err)
        {
            Elmah.ErrorSignal.FromCurrentContext().Raise(err);
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文