vgquotes/Src/VideoGameQuotes.Web/Views/Shared/ExceptionView.ascx

12 lines
350 B
Plaintext
Raw Normal View History

2011-02-11 05:21:31 +00:00
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Portoa.Web.ErrorHandling.ErrorModel>" %>
<%
if (true) {
if (Model.Exception != null) { %>
<h2>Exception Details</h2> <%
Html.RenderPartial("RecursiveExceptionView", Model.Exception);
} else { %>
<p class="info">No exception was thrown.</p>
<% }
}
%>