如何处理C#类文件中的异常

时间:2015-03-07 15:19:38

标签: asp.net c#-4.0 c#-2.0

在DataManipulation类(DataManipulation.cs文件)中实现的删除方法,SqlException将在DB出现任何异常时捕获,并且我想为用户自定义异常错误消息然后我想传递/显示该错误从类文件到相应的.aspx页面的消息。

我可以使用scriptmanager.registerstartupscript做到这一点,但我相信它不是标准的,所以我想在用户控件中显示自定义错误消息。

请提供您的建议,谢谢

    public class DataManipulation
   {
    public DataManipulation()
    { }
       public void Delete(ClientInfo info)
        {

            try
            {
               ......
            }
            catch (SqlException ex)
            {

                    string msg = "Delete Error: ...................";
                    msg += ex.Message.Replace("\'", "").Replace("\"", "");



             }
            catch (Exception ex)
            {
                throw;
            }
        }

    }

0 个答案:

没有答案