13 lines
544 B
Plaintext
13 lines
544 B
Plaintext
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Portoa.Web.ErrorHandling.ErrorModel>" MasterPageFile="~/Views/Shared/Site.Master" %>
|
||
|
|
||
|
<asp:Content ContentPlaceHolderID="TitleContent" runat="server">404</asp:Content>
|
||
|
|
||
|
<asp:Content ContentPlaceHolderID="MainContent" runat="server">
|
||
|
<% Html.RenderPartial("NotFoundContent"); %>
|
||
|
|
||
|
<p class="info">
|
||
|
Hey. Nice typing, dude. Why don’t you spit out your sandwich and try it again?
|
||
|
</p>
|
||
|
|
||
|
<% Html.RenderPartial("ExceptionView", Model); %>
|
||
|
</asp:Content>
|