2010-09-23 03:19:47 +00:00
|
|
|
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Web.Mvc.HandleErrorInfo>" %>
|
|
|
|
|
2010-10-08 03:35:04 +00:00
|
|
|
<%@ Import Namespace="NLog" %>
|
2010-09-23 03:19:47 +00:00
|
|
|
<asp:Content ID="errorTitle" ContentPlaceHolderID="TitleContent" runat="server">
|
2010-10-08 03:35:04 +00:00
|
|
|
EPIC FAIL!!!
|
2010-09-23 03:19:47 +00:00
|
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="errorContent" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<h2>
|
2010-10-08 03:35:04 +00:00
|
|
|
<%:Model.Exception.Message%>
|
2010-09-23 03:19:47 +00:00
|
|
|
</h2>
|
2010-10-08 03:35:04 +00:00
|
|
|
<br />
|
|
|
|
<%:Model.Exception.ToString()%>
|
2010-09-23 03:19:47 +00:00
|
|
|
</asp:Content>
|