asp.net sql server错误消息

时间:2014-02-11 11:42:56

标签: asp.net sql sql-server vb.net

我使用带有ASP.NET(VB)前端的SQL Server开发了一个建模系统。

前端用于数据输入,在SQL Server Management Studio中运行一些非常丰富的过程来运行计算。

然而,系统将被生产化,我将无法访问Live后端。因此,需要从ASP.NET站点运行这些过程。

我担心的是我无法跟踪计算中发生的任何错误。

有没有办法显示这些错误& /或在ASP.NET网页上的SSMS中运行SQL Server过程时当前显示的任何消息更新?

2 个答案:

答案 0 :(得分:0)

首先,您应该引入正确的错误处理。

您可以使用其他库(如log4net)将错误写入文件或任何其他来源。

.NET还有一个内置机制来检索最新的错误(Trace.axd)。

您可以在ASP.NET跟踪here找到更多信息。

答案 1 :(得分:0)

我不确定这是正确的方式,但我这样做。

创建一个类似的函数:

        //Log error
    static public void logError(Exception erorr)
    {
        //create/append file with current date as file name
        string logfile = DateTime.Now.ToString("yyyyMMdd") + ".log";
        logfile = Global.logpath + logfile; //logpath is a full folder path defined it the Global.cs file to hold the log files.
        using (StreamWriter sw = File.AppendText(logfile))
        {
            sw.Write("\r\nLog Entry : ");
            sw.WriteLine("{0} {1}", DateTime.Now.ToLongTimeString(), DateTime.Now.ToLongDateString());
            sw.WriteLine("  :");
            sw.WriteLine("  :Message :{0}", erorr.Message);
            sw.WriteLine("  :Source  :{0}", erorr.Source);
            if (erorr.InnerException != null)
                sw.WriteLine("  :Inner Ex:{0}", erorr.InnerException.Message);

            System.Diagnostics.StackTrace trace = new System.Diagnostics.StackTrace(erorr, true);
            var stackFrame = trace.GetFrame(trace.FrameCount - 1);
            sw.WriteLine("  :");
            sw.WriteLine("  :Stack   :");
            sw.WriteLine("           :Line Number :{0}", stackFrame.GetFileLineNumber());
            sw.WriteLine("           :Source File :{0}", stackFrame.GetFileName());
            sw.WriteLine("-------------------------------");
        }
    }

然后将您的计算放在try ... catch块中。像

try 
{
  //do my sql....
  //.............
{
catch(Exception ex)
{
   logError(ex);
}

在asp.net中查看日志。 创建一个页面并阅读日志文件。

注意:我很高兴看到专家对此方法的评论。 谢谢 快乐编码:)