1

当用户在我的网站上输入信息并遇到异常时,捕获该异常的最佳方法是什么。我想知道发生异常时他们在表格上填写了什么。你是怎么处理的?你用过什么工具?我研究了 ELMAH 和 log4net,目前正在尝试使用 log4net 来捕获这些信息。关于捕获表单字段的最佳方法有什么建议吗?

4

3 回答 3

1

在一些项目中,我们一直在使用 ELMAH,但不知何故我不喜欢它。(虽然是我的个人经验)在 ELMAH 中读取过滤错误日志的能力很酷,但仅此而已。

我有编写自己的错误处理程序的最佳经验。一种方法是订阅该Application_Error事件。
另一种方法是编写一个自定义的 HealthMonitoring 提供程序。我在这里写过这个主题:http ://www.tomot.de/en-us/article/6/asp.net/how-to-create-a-custom-healthmonitoring-provider-that-sends-e -mails
也许可以获得对引发异常的表单的引用并遍历每个控件/文本框并获取它们的值。

于 2012-04-06T07:10:29.443 回答
1

您可以在 中注册应用程序错误处理程序Global.Asax,然后访问HttpContext.Current以检索请求和表单值。

protected void Application_Error(Object sender, EventArgs e)
{
    HttpContext currentContext= HttpContext.Current;

    // set the exception to the Context 
    Exception exception = currentContext.Server.GetLastError();

...

然后,您可以根据需要记录/保存此信息。

于 2012-04-05T22:23:27.573 回答
1

在您Application_Error的 Global.asax.cs 中,您可以访问以下内容并记录它们。这就是我们所做的(删除了我们的细节)。

显然,在每个地方var whatever = ...,你都会这样做LogInSomeWay(whatever)。这段代码只是演示了将当前体验的每个重要部分分配给一个变量。

希望这可以帮助。

代码

void Application_Error(object sender, EventArgs e)
{
    Exception ex = Server.GetLastError();
    HttpContext context = HttpContext.Current;

    bool requestAvailable = false;
    try
    {
        if (context.Request != null)
        {
            requestAvailable = true;
        }
    }
    catch{}

    if (context != null) var serverName = context.Server.MachineName;

    if (context != null && requestAvailable)
    {
        var referrer = context.Request.UrlReferrer != null ? context.Request.UrlReferrer.ToString() : "";

        // If you use forms authentication and define your own principal, do some logging with it here
        OurPrincipal user = OurContext.Current.LoggedOnPrincipal;
        if (user != null && user.Identity != null && user.Identity.IsAuthenticated && user.Person != null)
        {
            var logonName = user.Person.LogonName;
            var loginPersonName = user.Person.FirstName + " " + user.Person.LastName;
        }

        var userIP = context.Request.UserHostAddress;
        var userDns = context.Request.UserHostName;
        var userAgent = context.Request.UserAgent;
        var exceptionText = ex.ToString();

        foreach (string key in context.Request.ServerVariables.AllKeys)
        {
            var currentServerVarKey = key;
            var currentServerVarValue = context.Request.ServerVariables[key];
        }

        if (context.Request.ServerVariables["REQUEST_METHOD"] == "POST"
            && context.Request.Form != null && context.Request.Form.AllKeys != null)
        {
            foreach (string key in context.Request.Form.AllKeys)
            {
                var currentFormKey = key;
                var currentFormValue = context.Request.Form[key];
            }
        }
    }
}
于 2012-04-05T22:45:58.537 回答