forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.aspx.cs
More file actions
34 lines (30 loc) · 1.05 KB
/
error.aspx.cs
File metadata and controls
34 lines (30 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using BlogEngine.Core.Web.Controls;
using BlogEngine.Core;
using System.Collections.Generic;
public partial class error_occurred : BlogBasePage
{
protected void Page_Load(object sender, EventArgs e)
{
Page.Title = Resources.labels.Error;
OutputErrorDetails();
}
private void OutputErrorDetails()
{
string contextItemKey = "LastErrorDetails";
if (Security.IsAuthorizedTo(Rights.ViewDetailedErrorMessages) && HttpContext.Current.Items.Contains(contextItemKey))
{
string errorDetails = (string)HttpContext.Current.Items[contextItemKey];
if (!string.IsNullOrEmpty(errorDetails))
{
divErrorDetails.Visible = true;
pDetails.InnerHtml = Server.HtmlEncode(errorDetails);
pDetails.InnerHtml = errorDetails.Replace(Environment.NewLine, "<br /><br />");
}
}
}
}