forked from HotcakesCommerce/hotcakes-commerce-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ErrorPage.aspx
31 lines (31 loc) · 1.49 KB
/
ErrorPage.aspx
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
<%@ Page Language="C#" AutoEventWireup="True" Inherits="DotNetNuke.Services.Exceptions.ErrorPage" CodeBehind="ErrorPage.aspx.cs" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta name="revisit-after" content="1 days" />
<meta name="robots" content="noindex,nofollow" />
<title runat="server" id="Title">Error</title>
<link id="DefaultStylesheet" runat="server" rel="stylesheet" type="text/css" href="~/Portals/_default/default.css" />
<link id="InstallStylesheet" runat="server" rel="stylesheet" type="text/css" href="~/Install/install.css" />
</head>
<body>
<form id="Form" runat="server">
<table cellspacing="5" cellpadding="5" border="0" class="Error">
<tr>
<td><asp:Image ID="headerImage" runat="server" BorderStyle="None" AlternateText="DotNetNuke" /></td>
</tr>
<tr style="height:100%;">
<td valign="top" style="width:650px;">
<h2>DNN Error</h2>
<hr />
<p><asp:PlaceHolder ID="ErrorPlaceHolder" runat="server" /></p>
</td>
</tr>
<tr>
<td align="right"><asp:Hyperlink ID="hypReturn" runat="Server" NavigateUrl="~/Default.aspx" cssClass="dnnPrimaryAction" text="Return to Site"/></td>
</tr>
<tr><td height="10px"></td></tr>
</table>
</form>
</body>
</html>