0

我在 123-Reg 上托管了一个网站,目前向用户显示我的错误消息 - 我过去曾要求他们向我发送屏幕截图,以便我可以调试正在发生的事情。

但是,我想设置一个带有一些文本的自定义错误页面,然后将错误通过电子邮件发送到我的收件箱。然而,我在网上找到的任何东西似乎都建议对 IIS 进行更改。

由于我使用 123-Reg 进行托管,我无法访问 IIS。这可以在应用程序级别上实现吗?

4

2 回答 2

0

您可以轻松添加 Elmah:

  1. 右键单击您的项目,选择“管理 Nuget 包”
  2. 点击“在线”-->“NuGet官方包源”
  3. 在搜索框中输入 Elmah 并选择第一个匹配项。单击安装。
  4. 通过找到以下行并将其更改为,在您的 web.config 中启用“远程访问”:

    <elmah>
    <!--
        See http://code.google.com/p/elmah/wiki/SecuringErrorLogPages for 
        more information on remote access and securing ELMAH.
     -->
    <security allowRemoteAccess="true" />
    </elmah>
    

您几乎完成了:确保您按照上面 URL 中的说明来保护您的错误页面并防止未经授权访问您的日志。

更新我应该说上面只会显示 Elmah 仪表板上的错误。您可以将其配置为也发送电子邮件错误。您将在此处找到有关如何执行此操作的示例:从 Elmah 发送电子邮件?

艾尔玛

于 2013-08-19T19:52:34.897 回答
0

On the Global.asax page just add the below code

 void Application_Error(object sender, EventArgs e) 
   { 
        // Code that runs when an unhandled error occurs
        // Get the error details 
        HttpException lastErrorWrapper = Server.GetLastError() as HttpException;

        Exception lastError = lastErrorWrapper;
        if (lastErrorWrapper.InnerException != null)
            lastError = lastErrorWrapper.InnerException;

        string lastErrorTypeName = lastError.GetType().ToString();
        string lastErrorMessage = lastError.Message;
        string lastErrorStackTrace = lastError.StackTrace;

        const string ToAddress = "youremail@yourdomain.com";
        const string FromAddress = "noreply@yourdomain.com";
        const string Subject = "An Error Has Occurred on Application Name!";

        // Create the MailMessage object 
        MailMessage msg = new MailMessage();
        string[] eAddresses = ToAddress.Split(';');

        for (int i = 0; i < eAddresses.Length; i++)
        {
            if (eAddresses[i].Trim() != "")
            {
                msg.To.Add(new MailAddress(eAddresses[i]));

            }
        }
        msg.From = (new MailAddress(FromAddress));

        msg.Subject = Subject;
        msg.IsBodyHtml = true;
        msg.Priority = MailPriority.High;
        msg.Body = string.Format(@" 
<html> 
<body> 
  <h1>An Error Has Occurred!</h1> 
  <table cellpadding=""5"" cellspacing=""0"" border=""1""> 
  <tr> 
  <td text-align: right;font-weight: bold"">URL:</td> 
  <td>{0}</td> 
  </tr> 
  <tr> 
  <td text-align: right;font-weight: bold"">User:</td> 
  <td>{1}</td> 
  </tr> 
  <tr> 
  <td text-align: right;font-weight: bold"">Exception Type:</td> 
  <td>{2}</td> 
  </tr> 
  <tr> 
  <td text-align: right;font-weight: bold"">Message:</td> 
  <td>{3}</td> 
  </tr> 
  <tr> 
  <td text-align: right;font-weight: bold"">Stack Trace:</td> 
  <td>{4}</td> 
  </tr>  
  </table> 
</body> 
</html>",
            Request.Url,
            Request.ServerVariables["LOGON_USER"],
            lastErrorTypeName,
            lastErrorMessage,
            lastErrorStackTrace.Replace(Environment.NewLine, "<br />"));


        // Attach the Yellow Screen of Death for this error    
        string YSODmarkup = lastErrorWrapper.GetHtmlErrorMessage();
        if (!string.IsNullOrEmpty(YSODmarkup))
        {
            Attachment YSOD = Attachment.CreateAttachmentFromString(YSODmarkup, "YSOD.htm");
            msg.Attachments.Add(YSOD);
        }


        // Send the email 
        SmtpClient smtp = new SmtpClient();
        smtp.Send(msg);

        Server.Transfer("/Error.aspx");

    }
于 2013-08-19T21:23:03.947 回答