不确定这是否有助于朝着正确的方向发展,但我只是使用这个:
[AttributeUsage(AttributeTargets.Class)]
public class ErrorHandlerAttribute : FilterAttribute, IExceptionFilter
{
readonly BaseController _bs = new BaseController();
public virtual void OnException(ExceptionContext fc)
{
var model = new errors
{
stacktrace = fc.Exception.StackTrace,
url = fc.HttpContext.Request.RawUrl,
controller = fc.RouteData.GetRequiredString("controller"),
source = fc.Exception.Source,
errordate = DateTime.Now,
message = fc.Exception.Message//,
//InnExc = String.IsNullOrEmpty(fc.Exception.InnerException.ToString()) ? fc.Exception.InnerException.ToString() : ""
};
var message = "<html><head></head><body><h2>An error occured on " + _bs.GetKeyValue<string>("Mobile Chat App") + ".</h2>";
message += "<strong>Message:</strong> <pre style=\"background-color:#FFFFEF\"> " + model.message + "</pre><br />";
message += "<strong>Source:</strong> <pre style=\"background-color:#FFFFEF\">" + model.source + "</pre><br />";
message += "<strong>Stacktrace:</strong><pre style=\"background-color:#FFFFEF\"> " + model.stacktrace + "</pre><br />";
message += "<strong>Raw URL:</strong> <pre style=\"background-color:#FFFFEF\">" + model.url + "</pre></br />";
message += "<strong>Inner Exception:</strong> <pre style=\"background-color:#FFFFEF\">" + model.InnExc + "</pre></br />";
message += "<strong>Any Form values</strong>: <pre>" + fc.HttpContext.Request.Form + "</pre><br />";
message += "</body></html>";
fc.ExceptionHandled = true;
fc.HttpContext.Response.Clear();
fc.HttpContext.Response.StatusCode = 500;
fc.HttpContext.Response.TrySkipIisCustomErrors = true;
_bs.SendErrorMail(message);
fc.ExceptionHandled = true;
//var res = new ViewResult { ViewName = "error" };
//fc.Result = res;
fc.HttpContext.Response.Redirect("/ErrorPage");
//fc.HttpContext.Response.RedirectToRoute("error",new{controller="Home",action="ErrorPage"});
}
我有一个 gmail 错误帐户,我将所有错误都放入其中,并让我知道我制作的任何网站是否有任何问题,这还没有让我失望。我没有深入研究这个问题,因为这些天我使用了不同的方法,但是:
fc.HttpContext.Request.RawUrl,
只是httpContext,你有没有httpcontext,我使用get 和fc.HttpContext.Request.Form 的URL 来获取可能导致错误的任何和所有表单数据。
这不是您所要求的响应,但这是因为我在请求期间捕获了错误,而不是响应错误!然后我清除响应(将是错误 500)并将其替换为重定向到我的页面,该页面有一张带键盘的猴子的漂亮图片:-)