我可以处理 aspx 中的 UK 错误吗?

发布于 2024-10-22 04:00:17 字数 772 浏览 2 评论 0 原文

“/”应用程序中的服务器错误。无法插入重复的键行 具有唯一索引“UK_Articles”的对象“dbo.Articles”。声明 已被终止。

描述:执行期间发生未处理的异常 当前的网络请求。请查看堆栈跟踪以了解更多信息 有关错误及其在代码中的来源的信息。

异常详细信息:System.Data.SqlClient.SqlException:无法插入 对象“dbo.Articles”中具有唯一索引的重复键行 “英国_文章”。该声明已终止。

我可以代替内部服务器错误 500 显示英国错误吗?我可以捕获错误并以某种方式显示它吗?

编辑:

 try
        {
            NHibernateSession.Save(entity);
        }

        catch (SqlException sex )
        {
            if (sex.Message.Contains("with unique index"))
                throw new UniqueConstraintException("UK ERROR");

            throw;
        }

但是 NHibernateSession.Save(entity) 总是引发 GenericADOException 而不会引发 SqlException。我想在 nhibernate 捕获插入,以便我可以在全局范围内捕获它。

Server Error in '/' Application. Cannot insert duplicate key row in
object 'dbo.Articles' with unique index 'UK_Articles'. The statement
has been terminated.

Description: An unhandled exception occurred during the execution of
the current web request. Please review the stack trace for more
information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Cannot insert
duplicate key row in object 'dbo.Articles' with unique index
'UK_Articles'. The statement has been terminated.

can i instead of internal server error 500 show UK error? can i catch the error and show it somehow?

EDIT:

 try
        {
            NHibernateSession.Save(entity);
        }

        catch (SqlException sex )
        {
            if (sex.Message.Contains("with unique index"))
                throw new UniqueConstraintException("UK ERROR");

            throw;
        }

but NHibernateSession.Save(entity) always trow GenericADOException and never SqlException. I want to catch insert at nhibernate so that i can ctach it globally.

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

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

发布评论

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

评论(2

看春风乍起 2024-10-29 04:00:17

我假设您正在使用 Sql Server。

您需要一个 try catch 块来处理 SqlException

try
{
    // run inser or update query here
    myObj.InserRow();
}
catch (System.Data.SqlClient.SqlException ex)
{
    if (ex.Number == 2601)
    {
        //"duplicate entry found!";
    }
    else
    {
        // some other kind of sql related exception
    }
}
catch (Exception ex)
{
    // any other exception
}

I am assuming you are using Sql Server.

You need a try catch block to handle SqlException

try
{
    // run inser or update query here
    myObj.InserRow();
}
catch (System.Data.SqlClient.SqlException ex)
{
    if (ex.Number == 2601)
    {
        //"duplicate entry found!";
    }
    else
    {
        // some other kind of sql related exception
    }
}
catch (Exception ex)
{
    // any other exception
}
携君以终年 2024-10-29 04:00:17

您可以使用 web.config 显示手动错误

<customErrors mode="On" defaultRedirect="~/ErrorPage.aspx">
  <error statusCode="500" redirect="~/500Error.aspx" />
</customErrors>

You can show manual errors using web.config

<customErrors mode="On" defaultRedirect="~/ErrorPage.aspx">
  <error statusCode="500" redirect="~/500Error.aspx" />
</customErrors>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文